forked from LHCfitNikhef/smefit_release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (35 loc) · 982 Bytes
/
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "smefit_tutorial"
version = "0.0.4"
description = "Standard Model Effective Field Theory Fitter"
authors = [
{name = "Tommaso Giani", email = "[email protected]"},
{name = "Giacomo Magni", email = "[email protected]"},
]
readme = "README.md"
keywords = ["packaging", "dependency", "infer", "pyproject.toml"]
repository = "https://github.com/tgiani/smefit_tutorial"
classifiers=[
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
]
requires-python = ">=3.8"
dependencies = [
"rich >= 11.2.0",
"matplotlib >= 3.5.1",
"pyyaml >= 5.3.0",
"numpy >= 1.21.5",
"pandas >= 1.4.1",
"scipy >= 1.8.0",
"click >= 8.1.3",
"cma >= 3.2.2",
"seaborn >= 0.11.2",
]
[project.scripts]
smefit = "smefit_tutorial.cli:base_command"