-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
30 lines (29 loc) · 1.01 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
from setuptools import setup
setup(
name='ogrtools',
version='0.7.3',
author='Pirmin Kalberer',
author_email='[email protected]',
packages=['ogrtools', 'ogrtools.interlis',
'ogrtools.ogrtransform', 'ogrtools.pyogr',
'ogr_cli'],
url='https://github.com/sourcepole/ogrtools',
license='LICENSE.txt',
description='Collection of libraries and tools built with the Python API of OGR.',
long_description=open('README.rst').read(),
#requires_external = 'GDAL (>=1.11.0)',
# tests_require=['nose'],
# test_suite='nose.collector',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Topic :: Scientific/Engineering :: GIS',
],
entry_points={
'console_scripts': ['ogr = ogr_cli.ogr:main'],
}
)