-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
96 lines (82 loc) · 2.06 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "smefit"
version = "3.0.1"
description = "Standard Model Effective Field Theory Fitter"
authors = [
"Tommaso Giani <[email protected]>",
"Giacomo Magni <[email protected]>",
"Jaco ter Hoeve <[email protected]>",
]
license = "LICENSE"
readme = "README.md"
keywords = ["packaging", "dependency", "infer", "pyproject.toml"]
homepage = "https://lhcfitnikhef.github.io/smefit_release/"
repository = "https://github.com/LHCfitNikhef/smefit_release"
classifiers=[
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
]
# Requirements
[tool.poetry.dependencies]
python = ">=3.10"
rich="^13.7.1"
matplotlib="^3.9.0"
pyyaml="^6.0.1"
numpy="^1.21.5"
ultranest="^3.6.4"
pandas="^2.2.2"
scipy="^1.8.0"
click="^8.1.3"
cma="^3.2.2"
seaborn="^0.13.2"
arviz="^0.18.0"
jax="^0.4.28"
jaxlib="^0.4.28"
wilson="^2.4"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
Sphinx = "^4.3.2"
sphinx-rtd-theme = "^1.0.0"
sphinxcontrib-bibtex = "^2.4.1"
nbsphinx = "^0.8.8"
ipykernel = "^6.13.0"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^7.1.3"
pytest-cov = "4.0.0"
pytest-env = "^0.6.2"
pylint = "^2.12.2"
[tool.poetry.group.dev.dependencies]
pdbpp = "^0.10.3"
ipython = "^8.0"
asv = "^0.4.2"
virtualenv = "^20.13.2"
devtools = "^0.10.0"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
dirty = true
[tool.poetry-dynamic-versioning.substitution]
files = ["src/smefit/version.py"]
[tool.pytest.ini_options]
testpaths = ['tests/']
python_files = ['test_*.py', 'benchmark_*.py']
python_classes = ['Test*', 'Benchmark*']
python_functions = ['test_*', 'benchmark_*']
#addopts = [
# '--cov=smefit',
# '--cov-report=html',
# '--cov-report=xml',
# '--strict-markers',
#]
[tool.poetry.scripts]
smefit = "smefit.cli:base_command"