-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (58 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
65 lines (58 loc) · 1.63 KB
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
57
58
59
60
61
62
63
64
65
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[project]
name = "sci-fab"
description = "Build system for scientific software"
authors = [
{name = "Core Capabilities Development Team", email = 'CoreCapabilityDevelopmentTeam@metoffice.gov.uk'}
]
license = {file = 'LICENSE'}
dynamic = ['version', 'readme']
requires-python = '>=3.9, <4'
dependencies = ['fparser >= 0.2']
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 = ['libclang']
plots = ['matplotlib']
docs = [
'sphinx',
'pydata-sphinx-theme>=0.13.3',
'sphinx-autodoc-typehints',
'sphinx-copybutton',
"sphinxcontrib-svg2pdfconverter>=1.3.0"
]
dev = [
'pytest >= 8.3.0',
'pytest-cov',
'pytest-mock',
'pytest-subprocess >= 1.5.3',
'pyfakefs',
'flake8 >= 5.0.4',
'mypy'
]
[project.scripts]
fab = 'fab.cui.__main__:main'
[project.urls]
homepage = 'https://github.com/MetOffice/fab'
documentation = 'https://MetOffice.github.io/fab'
repository = 'https://github.com/MetOffice/fab'
'Bug Reports' = 'https://github.com/MetOffice/fab/issues'
[tool.setuptools.packages.find]
where = ['source']
[tool.setuptools.dynamic]
readme = {file = 'README.rst', content-type = "text/x-rst"}
version = {attr = 'fab.__version__'}
# This is required so that pytest finds conftest.py files.
[tool.pytest.ini_options]
testpaths = [
"tests",
]