-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (54 loc) · 1.73 KB
/
setup.py
File metadata and controls
58 lines (54 loc) · 1.73 KB
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
import pathlib
from setuptools import setup
import sys
pkg_name = "PhyPraKit"
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# import _version_info from package
sys.path[0] = pkg_name
import _version_info
_version = _version_info._get_version_string()
setup(
name=pkg_name,
packages=[pkg_name],
version=_version,
author="Guenter Quast",
author_email="Guenter.Quast@online.de",
url="http://www.etp.kit.edu/~quast/",
license="GNU Public Licence",
description="Tools for data visualisation and analysis in Physics Lab Courses",
long_description=(HERE / "README.md").read_text(),
long_description_content_type="text/markdown",
scripts=[
"tools/run_phyFit.py",
"tools/plotData.py",
"tools/csv2yml.py",
"tools/plotCSV.py",
"tools/smoothCSV.py",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
# 'Development Status :: 4 - Beta',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
"Programming Language :: Python :: 2.7",
"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",
"Programming Language :: Python :: 3.12",
],
install_requires=[
"argparse",
"pathlib",
"npy_append_array",
"NumPy",
"SciPy",
"matplotlib",
"scikit-learn",
"matplotlib" ,
"iminuit",
],
)