-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_pyproject.toml
60 lines (50 loc) · 1.7 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.distutils.bdist_wheel]
universal = false
[project]
name = "PhyPraKit"
dynamic = ["version"]
description = "Tools for data visualisation and analysis in Physics Lab Courses"
authors = [
{name = "Guenter Quast", email = "Guenter.Quast@online.de"},
]
keywords = ["karlsruhe", "data", "analysis", "visualization", "lab", "laboratory",
"education", "university", "students", "physics"]
requires-python = ">=3.6"
readme = "README.md"
license = {text = "MIT BSD 2-Clause License"}
classifiers = [
"License :: OSI Approved :: MIT BSD 2-Clause License",
"Development Status :: 5 - stable",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Data Acquisition",
"Topic :: Scientific/Engineering :: Visualization",
"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",
"Programming Language :: Python :: 3.11" ]
dependencies = [
"numpy",
"matplotlib",
"scipy",
"pandas",
"iminuit",
"kafe2",
"uncertainties" ]
[tool.setuptools]
script-files = [
"tools/run_phyFit.py", "tools/plotData.py",
"tools/csv2yml.py", "tools/plotCSV.py" , "tools/smoothCSV.py"]
[tool.setuptools.packages.find]
include = ["PhyPraKit*"]
[tool.setuptools.dynamic]
version = {attr = "PhyPraKit.__version__"}