-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
44 lines (41 loc) · 1.07 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
from setuptools import setup
# do not pin requirements here (constraining is OK) - if you really must, make
# a requirements.txt file, but then you need to keep it in sync with this
# list.
# In other words,
#
# somedep==1.2.3 => bad
#
# somedep>=4.5 => OK
requirements = [
'fiona',
'numpy',
'pandas',
'pysal',
'scipy',
'shapely',
'matplotlib',
'palettable',
'bokeh',
]
setup(
name='state-adjacency-graphs',
version='0.1.0',
description="computes adjacency graphs from district boundary data",
author="Gerry Mander",
author_email='gerrymandr@gmail.com',
url='https://github.com/gerrymandr/state-adjacency-graphs',
packages=['adjacency_graphs'],
entry_points={
'console_scripts': [
'adjacency_graphs=adjacency_graphs.cli:cli'
]
},
install_requires=requirements,
keywords='state-adjacency-graphs',
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
)