forked from aspectumapp/vision_tile_query
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 964 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 964 Bytes
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
import vision_tile_query
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='vision_tile_query',
version=vision_tile_query.version,
description='Library for creating MVT SQL query',
long_description=open('Readme.md').read(),
author='Andrey Sorokin',
author_email='andreysrkn@eosda.com',
url='https://github.com/eos-vision/vision_tile_query',
packages=['vision_tile_query',
'vision_tile_query/utils',
'vision_tile_query/contrib'],
install_requires=[
'SQLAlchemy', 'mercantile', 'geoalchemy2'
],
license='Unlicense',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: Public Domain',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Database',
],
)