-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (33 loc) · 960 Bytes
/
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
import platform
from setuptools import setup
import pkg_resources
setup(
name='geom_difference',
version='0.1.1',
description='Calculate geometric differences of two GeoJSON/Shapefiles.',
long_description='',
url='https://github.com/omniscale/geom-difference',
author='Omniscale',
author_email='[email protected]',
license='Apache Software License 2.0',
py_modules=['geom_difference'],
include_package_data=True,
entry_points = {
'console_scripts': [
'geom-difference = geom_difference:main',
],
},
install_requires=[
'Shapely',
'Fiona',
'pyproj',
'rtree',
],
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: GIS",
],
)