forked from pka/qgpkg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 874 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
from setuptools import setup
setup(
name='qgpkg',
version='0.0.0',
author='Pirmin Kalberer',
author_email='[email protected]',
packages=['qgisgpkg', 'qgpkg_cli'],
url='https://github.com/pka/qgpkg',
license='LICENSE.txt',
description='Store QGIS map information in GeoPackages.',
long_description=open('README.rst').read(),
# 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 = gpkg_cli.gpkg:main'],
}
)