-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 904 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
#!/usr/bin/env python
from distutils.core import setup
setup(
name='tmstiler',
packages=['tmstiler', ],
version='0.5.1',
license='MIT',
description='Utilities for creating and calculating coordinates for Web Map Image tiles',
author='Shane C0usins',
author_email='[email protected]',
url='https://github.com/monkut/tmstiler',
download_url='https://github.com/monkut/tmstiler/tarball/0.5.1/',
keywords=['tiles', 'web-mapping', 'tile-map-service', 'tms'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)