forked from nsg-ethz/config2spec
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 625 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (21 loc) · 625 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
#!/usr/bin/env python
import os
from distutils.core import setup
def read(file_name):
return open(os.path.join(os.path.dirname(__file__), file_name)).read()
setup(name="Config2Spec",
version="0.1",
description="Automatic Network Specification Learning",
author="Ruediger Birkner",
author_email="rbirkner@ethz.ch",
install_requires=[
'pandas==0.23.4',
'pytricia==1.0.0',
'requests==2.21.0',
'networkx==2.2',
'netaddr==0.7.19',
'numpy==1.16.0',
],
packages=["config2spec"],
long_description=read("README.md"),
)