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
|
from distutils.core import setup
version = '0.1.5'
app = 'tilelite'
description = 'Lightweight WSGI tile-server, written in Python, using Mapnik rendering and designed to serve tiles in the OSM/Google scheme.'
url = 'http://bitbucket.org/springmeyer/%s/' % app
readme = file('README.txt','rb').read()
setup(name='%s' % app,
version=version,
description=description,
#long_description=readme,
author='Dane Springmeyer',
author_email='dbsgeo@gmail.com',
requires=['Mapnik'],
keywords='mapnik,gis,geospatial,openstreetmap,tiles,cache',
license='BSD',
url=url,
#download_url='%s/get/v%s.gz' % (url,version),
py_modules=['%s' % app],
#packages=['%s' % app],
scripts = ['liteserv.py'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Utilities'],
)
|