forked from mapsme/osm_conflate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.24 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
from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
exec(open(path.join(here, 'conflate', 'version.py')).read())
setup(
name='osm_conflate',
version=__version__,
author='Ilya Zverev',
author_email='[email protected]',
packages=['conflate'],
package_data={'conflate': ['places.bin']},
install_requires=[
'kdtree',
'requests',
],
url='https://github.com/mapsme/osm_conflate',
license='Apache License 2.0',
description='Command-line script for merging points from a third-party source with OpenStreetMap data',
long_description=open(path.join(here, 'README.rst')).read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Information Technology',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3 :: Only',
],
entry_points={
'console_scripts': ['conflate = conflate:run']
},
)