Ai
1 Star 0 Fork 0

sheyuanyi/tilequeue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 2.05 KB
一键复制 编辑 原始数据 按行查看 历史
Matt Amos 提交于 2019-04-18 00:12 +08:00 . Bump Jinja2 version to 2.10.1 for CVE-2019-10906.
import os.path
from setuptools import setup, find_packages
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='rob@mapzen.com',
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',
]
)
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yuanyishe/tilequeue.git
git@gitee.com:yuanyishe/tilequeue.git
yuanyishe
tilequeue
tilequeue
master

搜索帮助