-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
103 lines (90 loc) · 2.89 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
97
98
99
100
101
102
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "kafe2"
description = "Karlsruhe Fit Environment 2: a package for fitting and elementary data analysis"
# the list of authors is ordered alphabetically by last name
authors = [
{ name="Johannes Gäßler", email="johannes.gaessler@cern.ch" },
{ name="Michael Hohenstein", email="michael@hohenste.in" },
{ name="Günter Quast", email="G.Quast@kit.edu" },
{ name="Daniel Savoiu", email="daniel.savoiu@cern.ch" },
{ name="Cedric Verstege", email="cedric.verstege@cern.ch" },
]
readme = "README.rst"
requires-python= ">=3.6"
keywords = ["kafe2", "kit", "karlsruhe", "data", "analysis", "lab", "laboratory", "practical courses", "education", "university", "students", "physics", "fitting", "minimization", "minimisation", "regression", "parametric", "parameter", "estimation", "optimization", "optimisation"]
license = {text = "GPL3"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
#TODO dependency versions
dependencies = [
"iminuit",
"NumPy",
"Numdifftools",
"Scipy",
"tabulate",
"matplotlib>=3.4",
"PyYaml",
"six",
"funcsigs",
"SymPy",
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "kafe2.__version__"}
[project.optional-dependencies]
dev = [
"coverage",
"sphinx",
"sphinx-rtd-theme",
"mock",
"pytest",
"flake8",
"black",
"isort",
"build",
"twine",
"tomli", # required for Py<3.11, otherwise tomllib is present
"jupyterlab",
]
[project.urls]
"Homepage" = "https://philfitters.github.io/kafe2/"
"Repository" = "https://github.com/PhiLFitters/kafe2"
[tool.setuptools.packages.find]
include = ["kafe2*"]
[project.scripts]
kafe2go = "kafe2.fit.tools.kafe2go:kafe2go"
[tool.setuptools.package-data]
kafe2 = ["config/*.conf", "config/*.yaml", "config/*.yml", "fit/tools/kafe2go"]
[tool.pytest.ini_options]
testpaths = "kafe2/test"
python_files = "test*.py"
[tool.coverage.run]
source = [
"kafe2",
]
omit = [
"kafe2/test/*",
]
command_line= '-m unittest discover -v -s kafe2/test -p "*.py"'
[tool.black]
line-length = 150
[tool.isort]
profile = "black"