forked from tilezen/tilequeue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
69 lines (66 loc) · 2.07 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import os.path
from setuptools import find_packages
from setuptools import setup
version_path = os.path.join(os.path.dirname(__file__), 'VERSION')
with open(version_path) as fh:
version = fh.read().strip()
setup(name='tilequeue',
version=version,
description='Queue operations to manage the processes surrounding tile '
'rendering.',
long_description=open('README.md').read(),
classifiers=[
# strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Internet :: WWW/HTTP :: Site Management',
'Topic :: Utilities',
],
keywords='aws queue s3 sqs tile map',
author='Robert Marianski, Mapzen',
author_email='[email protected]',
url='https://github.com/mapzen/tilequeue',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'boto',
'boto3',
'edtf',
'enum34',
'hiredis',
'Jinja2>=2.10.1',
'mapbox-vector-tile',
'ModestMaps',
'protobuf',
'psycopg2',
'pyproj>=2.1.0',
'python-dateutil',
'PyYAML',
'raw_tiles',
'redis',
'requests',
'Shapely',
'statsd',
'ujson',
'zope.dottedname',
],
test_suite='tests',
tests_require=[
'mock',
'httptestserver'
],
entry_points=dict(
console_scripts=[
'tilequeue = tilequeue.command:tilequeue_main',
]
)
)