forked from Critical-Infrastructure-Systems-Lab/DHALSIM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (38 loc) · 1.01 KB
/
setup.py
File metadata and controls
39 lines (38 loc) · 1.01 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
import setuptools
setuptools.setup(
name="dhalsim",
version="1.1.0",
url="https://github.com/afmurillo/DHALSIM",
project_urls={
"Bug Tracker": "https://github.com/afmurillo/DHALSIM/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
# "Operating System :: OS Independent",
],
license='MIT',
packages=['dhalsim'],
install_requires=[
'PyYAML',
'pyyaml-include',
'antlr4-python3-runtime==4.7.2',
'progressbar2',
'wntr',
'pandas==1.3.4',
'matplotlib==3.5.0',
'schema',
'scapy',
'fnfqueue'
],
extras_require={
'test': ['pytest', 'pytest-mock', 'mock', 'wget', 'coverage', 'pytest-cov', 'flaky'],
'doc': ['sphinx', 'sphinx-rtd-theme', 'sphinx-prompt'],
},
python_requires=">=3.8",
entry_points={
'console_scripts': [
'dhalsim = dhalsim.command_line:main',
],
},
)