forked from htcvszrf/geotool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 807 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
import sys
from setuptools import find_packages, setup
install_requires = [
'numpy>=1.11.1',
'GDAL',
]
setup(
name='geotool',
version='0.1.0',
description='a tool implementation on gdal',
keywords='geo tool python',
packages=['geotool'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities',
],
url='https://github.com/Kindron/geotool.git',
author='Kingdrone',
author_email='[email protected]',
license='GPLv3',
setup_requires=[],
tests_require=[],
install_requires=install_requires,
zip_safe=False)