-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
39 lines (33 loc) · 1.14 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python
from distutils.core import setup
VERSION = '0.1'
DESCRIPTION = "Tokyo Tyrant cache backend for Django"
LONG_DESCRIPTION = """
Django cache backend using the Tokyo Tyrant to store cache. You also need to
install 'pytyrant' (pure python client implementation of the binary Tokyo Tyrant
protocol).
Tokyo Tyrant is the de facto database server for Tokyo Cabinet written and
maintained by the same author. It supports a REST HTTP protocol, memcached,
and its own simple binary protocol.
"""
CLASSIFIERS = filter(None, map(str.strip,
"""
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python
Topic :: Database :: Front-Ends
Topic :: Software Development :: Libraries :: Python Modules
""".splitlines()))
setup(
name="django-tyrant-cache",
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
classifiers=CLASSIFIERS,
author="Anatoly Vostryakov",
author_email="[email protected]",
url="http://github.com/avostryakov/django-tyrant-cache",
license="MIT License",
py_modules=['tyrant_cache'],
platforms=['any'],
)