-
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) · 802 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 802 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-cache',
version='0.0.3',
install_requires=[],
author='TileJet Developers',
author_email='tilejet.dev@gmail.com',
license='MIT License',
url='https://github.com/tilejet/tilejet-cache/',
keywords='python gis tilejet',
description='A performant python library for caching tiles in-memory using memcached.',
long_description=open('README.md').read(),
download_url="https://github.com/tilejet/tilejet-cache/zipball/master",
packages=["tilejetcache"],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)