-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (23 loc) · 877 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='tilejet-util',
version='0.0.2',
install_requires=[],
author='TileJet Developers',
author_email='[email protected]',
license='MIT License',
url='https://github.com/tilejet/tilejet-util/',
keywords='python gis tilejet',
description='A python utility library containing functions for managing tile services, such as converting between z/x/y to geojson.',
long_description=open('README.md').read(),
download_url="https://github.com/tilejet/tilejet-util/zipball/master",
#py_modules=["tilejetutil"],
packages=["tilejetutil"],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)