-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (31 loc) · 893 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
30
31
32
33
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': '[email protected]',
'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)