-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·25 lines (23 loc) · 906 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
25
#!/usr/bin/env python
from setuptools import setup
setup(
name='python-ultramemcached',
version='0.0.4',
install_requires=['umemcache'],
author='Nicholas Serra',
author_email='[email protected]',
license='MIT License',
url='https://github.com/nicholasserra/python-ultramemcached/',
keywords='python memcache memcached ultramemcached ultramemcache',
description='A drop in replacement for python-memcached that uses ultramemcache',
long_description=open('README.md').read(),
download_url="https://github.com/nicholasserra/python-ultramemcached/zipball/master",
py_modules=["ultramemcache"],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet'
]
)