-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
25 lines (22 loc) · 865 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
#!/usr/bin/env python
from distutils.core import setup
import memcache
setup(name="python-memcached",
version=memcache.__version__,
description="Pure python memcached client",
long_description=open("README").read(),
author="Evan Martin",
author_email="[email protected]",
maintainer="Tim Perevezentsev",
maintainer_email="[email protected]",
url="http://github.com/riffm/python-memcached",
py_modules=["memcache"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Python Software Foundation License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
])