-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
46 lines (40 loc) · 1.36 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
[build-system]
requires = ["maturin>=0.13.4"]
build-backend = "maturin"
[project]
name = "pineappl"
# due to a bug in warehouse, https://github.com/pypi/warehouse/issues/8090, this file must be the
# same across all wheels of a single version and therefore `requires-python` must give the minimum
# Python version that we support
requires-python = ">=3.6"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Rust",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = ["numpy>=1.16.0,<2.0.0"]
[project.optional-dependencies]
docs = ["sphinx>=6.2.1", "sphinx_rtd_theme>=1.2.2", "sphinxcontrib-bibtex>=2.5.0", "nbsphinx>=0.9.2"]
test = ["pytest", "pytest-cov"]
[project.urls]
homepage = "https://nnpdf.github.io/pineappl/"
documentation = "https://pineappl.readthedocs.io/"
changelog = "https://nnpdf.github.io/pineappl/CHANGELOG.html"
[tool.maturin]
bindings = "pyo3"
strip = true
[tool.pytest.ini_options]
testpaths = ['tests/']
addopts = [
'--cov=pineappl',
'--cov-report=html',
'--cov-report=xml',
'--strict-markers',
]