-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
47 lines (45 loc) · 1.22 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
from os.path import abspath, dirname, join
from setuptools import find_packages, setup
FOLDER = dirname(abspath(__file__))
DESCRIPTION = '\n\n'.join(open(join(FOLDER, x)).read().strip() for x in [
'README.rst', 'CHANGES.rst'])
setup(
name='infrastructure-planning',
version='3.0.1',
description='Infrastructure planning tools',
long_description=DESCRIPTION,
classifiers=[
'Programming Language :: Python'
],
author='Roy Hyunjin Han',
author_email='[email protected]',
url='https://github.com/sel-columbia/infrastructure-planning',
keywords='infrastructure-planning networkplanner crosscompute',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
setup_requires=[
'pytest-runner',
],
install_requires=[
# 'GDAL',
'geometryIO>=0.9.7.4',
'geopy',
'invisibleroads-macros>=0.7.4',
'matplotlib',
# 'networker',
'networkx<2',
'numpy',
'pandas==v0.19.1',
'python-dateutil',
'scikit-learn',
'scipy',
# 'sequencer',
'shapely',
'simplejson',
'six',
],
tests_require=[
'pytest',
'pytest-cov',
])