This repository was archived by the owner on Jul 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (40 loc) · 1.22 KB
/
Copy pathsetup.py
File metadata and controls
42 lines (40 loc) · 1.22 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="TUMMET",
version="0.0.11",
author="Michael Winkler",
author_email="michael.b.winkler@tum.de",
description="A packages to evaluate material test data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mbwinkler/TUM-MET",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.9",
install_requires=[
'colorama == 0.4.4',
'cycler == 0.11.0',
'et-xmlfile==1.1.0',
'fonttools==4.32.0',
'kiwisolver == 1.4.2',
'matplotlib == 3.5.1',
'numpy == 1.22.3',
'openpyxl==3.0.9',
'packaging == 21.3',
'pandas == 1.4.2',
'Pillow == 9.1.0',
'pyparsing == 3.0.8',
'python-dateutil==2.8.2',
'pytz == 2022.1',
'scipy == 1.8.0',
'seaborn == 0.11.2',
'six == 1.16.0',
'tqdm == 4.64.0']
)