-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 824 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
from setuptools import setup
setup(
name='tilejet-stats',
version='0.0.2',
install_requires=[],
author='TileJet Developers',
author_email='tilejet.dev@gmail.com',
license='MIT License',
url='https://github.com/tilejet/tilejet-stats/',
keywords='python gis tilejet',
description='A python utility library containing functions for generating statistics on tile service usage.',
long_description=open('README.md').read(),
download_url="https://github.com/tilejet/tilejet-stats/zipball/master",
packages=["tilejetstats"],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)