1 Star 0 Fork 0

sheyuanyi/raw_tiles

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 893 Bytes
一键复制 编辑 原始数据 按行查看 历史
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
config = {
'description': 'Raw Tiles',
'author': 'Matt Amos',
'url': 'https://github.com/tilezen/raw_tiles',
'download_url': 'https://github.com/tilezen/raw_tiles/releases',
'author_email': 'zerebubuth@gmail.com',
'version': '1.0.1',
'install_requires': [
'nose',
'psycopg2',
'shapely',
'msgpack-python',
'boto3'
],
'include_package_data': True,
'package_data': {'raw_tiles.source': ['*.sql']},
'packages': find_packages(exclude=['ez_setup', 'examples', 'tests']),
'scripts': [],
'name': 'raw_tiles',
'test_suite': 'tests',
'entry_points': {
'console_scripts': [
'raw_tiles = raw_tiles.command:raw_tiles_main',
]
},
}
setup(**config)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yuanyishe/raw_tiles.git
git@gitee.com:yuanyishe/raw_tiles.git
yuanyishe
raw_tiles
raw_tiles
master

搜索帮助