-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 1.41 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
[project]
name = "pySecDec"
version = "1.6.6"
author = "Sophia Borowka, Bakar Chargeishvili, Gudrun Heinrich, Stephan Jahn, Stephen Jones, Matthias Kerner, Florian Langer, Vitaly Magerya, Anton Olsson, Andres Poldaru, Johannes Schlenk, Emilio Villa, Tom Zirke"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: GPU :: NVIDIA CUDA",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics"
]
dependencies = ["numpy>=1.23,<3", "sympy>=1.10.1,!=1.11.*,!=1.12.*,<2", "nest-asyncio~=1.5"]
requires-python = ">=3.8"
description = 'Numerical evaluator of integrals implementing the "Sector Decomposition" method (arXiv:2305.19768, arXiv:2108.10807, arXiv:1703.09692, arXiv:hep-ph/0004013, arXiv:0803.4177).'
license = "GPLv3"
readme = "README.md"
url = "https://github.com/gudrunhe/secdec"
[project.optional-dependencies]
testing = ["pytest", "pytest-timeout", "pytest-cov"]
documentation = ["sphinx>=1.6.3"]
[build-system]
requires = ["enscons~=0.30", "toml~=0.10", "packaging>=20.5"]
build-backend = "enscons.api"
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"active: marks test as active (deselect with '-m \"not active\"')",
]