forked from sunpazed/memcache_client
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·35 lines (31 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
#!/usr/bin/env python
import os
from setuptools import setup
def localopen(fname):
return open(os.path.join(os.path.dirname(__file__), fname))
setup(
name='moecache',
version='1.0',
description='A memcached client with a different shading strategy',
author='Zhihao Yuan',
author_email='[email protected]',
py_modules=['moecache'],
zip_safe=True,
license='ASL 2.0',
keywords=['rackspace', 'memcached'],
url='https://github.com/lichray/moecache',
long_description=localopen('README.rst').read(),
install_requires=localopen('requirements.txt').readlines(),
tests_require=localopen('test-requirements.txt').readlines(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: PyPy',
]
)