-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (31 loc) · 974 Bytes
/
setup.py
File metadata and controls
39 lines (31 loc) · 974 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
32
33
34
35
36
37
38
39
# -*- coding: utf-8 -*-
from setuptools import setup
packages = \
['sidewalkify', 'sidewalkify.draw', 'sidewalkify.geo', 'sidewalkify.graph']
package_data = \
{'': ['*']}
install_requires = \
['click==7.1.2',
'geopandas>=0.8.0,<0.9.0',
'networkx>=2.0,<3.0',
'shapely==1.7.1']
entry_points = \
{'console_scripts': ['sidewalkify = sidewalkify.cli:sidewalkify']}
setup_kwargs = {
'name': 'sidewalkify',
'version': '0.2.1',
'description': 'Command line tool and Python library for extrapolating sidewalk lines from annotated streets',
'long_description': None,
'author': 'Nick Bolten',
'author_email': 'nbolten@gmail.com',
'maintainer': None,
'maintainer_email': None,
'url': None,
'packages': packages,
'package_data': package_data,
'install_requires': install_requires,
'entry_points': entry_points,
'python_requires': '>=3.7.1,<4.0.0',
}
setup(**setup_kwargs)
# This setup.py was autogenerated using poetry.