-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (32 loc) · 935 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
import platform
from setuptools import setup, find_packages
import pkg_resources
setup(
name='admin_clipper',
version='0.1.2',
description='Clip administrative boundaries at coastlines.',
long_description='',
author='Omniscale',
author_email='[email protected]',
url='https://github.com/omniscale/admin_clipper',
license='Apache Software License 2.0',
py_modules=['admin_clipper'],
include_package_data=True,
entry_points = {
'console_scripts': [
'admin-clipper = admin_clipper:main',
],
},
install_requires=[
'Shapely',
'Fiona',
'pyproj',
],
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",
],
)