-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (45 loc) · 1.28 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
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.7.1,<4"]
[project]
name = "dis_tp"
version = "0.1.2"
authors = [
{name = "Andrea Barontini", email = "[email protected]"},
{name = "Niccolò Laurenti", email = "[email protected]"},
]
description = "Python package for producing matched DIS predictions"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
dependencies = [
"numpy >= 1.24",
"scipy >= 1.10.1",
"progress == 1.6",
"mpmath == 1.3.0",
"matplotlib == 3.5.2",
"simple-term-menu == 1.4.1",
"pre-commit == 2.20.0",
"pytest == 6.2.5",
"pytest-cov == 2.12.1",
"yadism == 0.12.5",
"click ==8.1.3",
"banana-hep ==0.6.7",
"multiprocess == 0.70.14",
"rich == 12.6.0",
"tomli == 2.0.1"
]
[tool.pytest.ini_options]
testpaths = ['tests/', 'benchmarks/']
python_files = ['test_*.py', 'bench_*.py']
python_functions = ['test_*', 'benchmark_*']
[project.scripts]
dis_tp = "dis_tp.cli:command"