forked from MetOffice/fab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (49 loc) · 1.51 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[project]
name = "sci-fab"
description = "Build system for scientific software"
authors = [
{name = "Core Capabilities Development Team", email = 'CoreCapabilityDevelopmentTeam@metoffice.gov.uk'}
]
license = {file = 'LICENSE.txt'}
dynamic = ['version', 'readme']
requires-python = '>=3.7, <4'
dependencies = ['fparser']
classifiers = [
'Development Status :: 1 - Planning',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Build Tools'
]
[project.optional-dependencies]
c-language = ['clang']
plots = ['matplotlib']
tests = ['pytest', 'pytest-cov', 'pytest-mock']
checks = ['flake8>=5.0.4', 'mypy']
docs = ['sphinx',
'pydata-sphinx-theme>=0.13.3',
'sphinx-autodoc-typehints',
'sphinx-copybutton']
dev = ['sci-fab[plots, tests, checks, docs]']
[project.scripts]
fab = 'fab.cli:cli_fab'
[project.urls]
homepage = 'https://github.com/Metomi/fab'
documentation = 'https://metomi.github.io/fab/'
repository = 'https://github.com/metomi/fab'
'Bug Reports' = 'https://github.com/metomi/fab/issues'
[tool.setuptools.packages.find]
where = ['source']
[tool.setuptools.dynamic]
readme = {file = 'README.md'}
version = {attr = 'fab.__version__'}
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
# This is required so that pytest finds conftest.py files.
[tool.pytest.ini_options]
testpaths = [
"tests",
]