-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (27 loc) · 840 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='mapchete-safe',
version='0.7',
description='Mapchete SAFE file read extension',
author='Joachim Ungar',
author_email='joachim.ungar@eox.at',
url='https://github.com/ungarj/mapchete-safe',
license='MIT',
packages=['mapchete_safe'],
install_requires=[
'mapchete>=0.13',
's2reader>=0.4',
'cached_property'
],
entry_points={'mapchete.formats.drivers': ['safe=mapchete_safe']},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: GIS',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
],
setup_requires=['pytest-runner'],
tests_require=['pytest']
)