-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (32 loc) · 1.13 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
from distutils.core import setup
setup(
name="pyfatcache",
version="1.0.0",
author="Panu P",
author_email="[email protected]",
maintainer="Panu P",
maintainer_email="[email protected]",
url="https://github.com/panuph/pyfatcache",
description="a simple python client for twitter's fatcache",
long_description="""Example usage::
import pyfatcache
conn = pyfatcache.get_conn()
conn.delete("a")
print "expect (None, None) / get %s" % (str(conn.get("a")),)
conn.set("a", "a", flags=1)
print "expect ('a', 1) / get %s" % (str(conn.get("a")),)
conn.set("a", dict(name="pyfatcache"))
print "expect ({'name': 'pyfatcache'}, 0) / get %s" % (str(conn.get("a")),)
conn.set("a", None)
print "expect (None, 0) / get %s" % (str(conn.get("a")),)
conn.close()
""",
download_url="https://github.com/panuph/pyfatcache",
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules"
],
platforms=["python"],
license="Freeware",
py_modules=["pyfatcache"]
)