-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 885 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 885 Bytes
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
import setuptools
with open("README.rst", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pytep",
version="0.0.2",
author="Christopher Reinartz, Thomas Enevoldsen",
author_email="ccrein@elektro.dtu.dk",
url="https://github.com/ChristopherReinartz/pytep.git",
download_url="https://github.com/ChristopherReinartz/pytep/archive/refs/tags/v0.0.2.tar.gz",
description="Tennessee Eastman simulator",
long_description="README.rst",
long_description_content_type="text/x-rst",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires='==3.7.*',
include_package_data=True,
install_requires=[
'dash>=1.20.0',
'pandas>=1.2.3',
'pytest>=6.2.3',
]
)