-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
57 lines (56 loc) · 1.26 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
52
53
54
55
56
57
from distutils.core import setup
setup(
name='link',
version='0.0.1',
description='Connect all the things',
author='Fabion Kauker',
author_email='[email protected]',
packages=["link"],
install_requires=[
"bcrypt==3.1.4",
"blinker==1.4",
"cffi==1.11.5",
"cplex==12.8.0.0",
"docloud==1.0.369",
"docplex==2.9.141",
"decorator==4.3.0",
"Fiona==1.8.6",
"Flask==0.10.1",
"Flask-Admin==1.3.0",
"Flask-Bcrypt==0.7.1",
"Flask-DebugToolbar==0.10.0",
"Flask-Login==0.3.2",
"Flask-Mail==0.9.1",
"Flask-Script==2.0.5",
"Flask-SQLAlchemy==2.1",
"Flask-WTF==0.12",
"GDAL==2.2.4",
"geopandas==0.4.0",
"gunicorn==19.4.5",
"itsdangerous==0.24",
"Jinja2==2.10",
"MarkupSafe==1.0",
"networkx==2.1",
"numpy==1.16.1",
"osmnx==0.8.1",
"pandas==0.23.4",
"pcst-fast==1.0.7",
"protobuf==3.3.0",
"py3-ortools==5.1.4041",
"pybind11==2.2.3",
"pycparser==2.18",
"pytest==3.7.0",
"pytz==2016.10",
"requests==2.19.1",
"rpy2==2.8.6",
"Rtree==0.8.3",
"scipy==1.1.0",
"Shapely==1.6.4.post1",
"six==1.11.0",
"SQLAlchemy==1.2.10",
"structlog==16.1.0",
"termcolor==1.1.0",
"Werkzeug==0.15.3",
"WTForms==2.1"
]
)