-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
51 lines (50 loc) · 1.27 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import setuptools
setuptools.setup(
name="dhalsim",
version="1.1.1",
url="https://github.com/Critical-Infrastructure-Systems-Lab/DHALSIM",
project_urls={
"Bug Tracker": "https://github.com/Critical-Infrastructure-Systems-Lab/DHALSIM/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
# "Operating System :: OS Independent",
],
license='MIT',
packages=['dhalsim'],
install_requires=[
'pyyaml==6.0.1',
'pyyaml-include==2.1',
'antlr4-python3-runtime==4.13.1',
'progressbar2',
'numpy==1.24.3',
'wntr',
'pandas',
'matplotlib',
'schema',
'scapy',
'pathlib',
'testresources',
'pytest-mock',
'netaddr',
'flaky',
'pytest',
'tensorflow',
'scikit-learn',
'keras==2.13.1',
'pytest',
'pytest-mock',
'mock'
],
extras_require={
'test': ['wget', 'coverage', 'pytest-cov'],
'doc': ['sphinx', 'sphinx-rtd-theme', 'sphinx-prompt'],
},
python_requires=">=3.8.10",
entry_points={
'console_scripts': [
'dhalsim = dhalsim.command_line:main',
],
},
)