-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
36 lines (34 loc) · 1.04 KB
/
setup.py
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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="pystorms",
version="1.0.0",
description="Simulation sandbox for stormwater control algorithms",
author="Abhiram Mullapudi, Sara C. Troutman, Sara Rimer, Branko Kerkez",
author_email="[email protected], [email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/kLabUM/pystorms",
packages=['pystorms'],
package_data={
"pystorms": [
"networks/*.inp",
"networks/*.py",
"event_drivers/*.npy",
"config/*.yaml",
"config/*.py",
"scenarios/*.py",
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
],
install_requires=[
"numpy>=1.18.4",
"pyswmm>=1.0.1",
"pyyaml>=5.3"
],
)