-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 801 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 801 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
26
27
28
29
30
31
from distutils.core import setup
setup(name='blocksequence',
version='0.1',
description='Sequence a collection of blocks in a parent geography',
maintainer='Reginald Maltais',
maintainer_email='reginald.maltais2@canada.ca',
url='https://github.com/statcan/block-sequence',
packages=['blocksequence',],
license='MIT',
long_description=open('README.md').read(),
install_requires=[
"click == 6.7",
"click-log == 0.3.2",
"click-plugins == 1.0.3",
"Fiona == 1.7.13",
"geopandas == 0.4.0",
"matplotlib == 2.2.3",
"networkx == 2.2",
"numpy == 1.16.1",
"pandas == 0.23.4",
"pyproj == 1.9.6",
"pytest == 4.0.1",
"Shapely == 1.6.4.post2",
],
entry_points={
'console_scripts': [
'blocksequence=blocksequence.cli:start'
]
}
)