-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (19 loc) · 983 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
#!/usr/bin/env python
from distutils.core import setup
version = open('VERSION', 'r').read().strip()
setup(name='TileStache',
version=version,
description='A stylish alternative for caching your map tiles.',
author='Michal Migurski',
author_email='[email protected]',
url='http://tilestache.org',
requires=['ModestMaps (>=1.3.0)','simplejson','PIL'],
packages=['TileStache',
'TileStache.Vector',
'TileStache.Goodies',
'TileStache.Goodies.Caches',
'TileStache.Goodies.Providers'],
scripts=['scripts/tilestache-compose.py', 'scripts/tilestache-seed.py', 'scripts/tilestache-clean.py', 'scripts/tilestache-server.py', 'scripts/tilestache-render.py'],
data_files=[('share/tilestache', ['TileStache/Goodies/Providers/DejaVuSansMono-alphanumeric.ttf'])],
download_url='http://tilestache.org/download/TileStache-%(version)s.tar.gz' % locals(),
license='BSD')