forked from jaysonsantos/python-binary-memcached
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 1.03 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
import os
from setuptools import setup
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(
name='python-binary-memcached',
version='0.30.1',
author='Jayson Reis',
author_email='[email protected]',
description='A pure python module to access memcached via its binary protocol with SASL auth support',
long_description='{0}\n{1}'.format(read('README.rst'), read('CHANGELOG.rst')),
url='https://github.com/jaysonsantos/python-binary-memcached',
packages=['bmemcached', 'bmemcached.client'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
install_requires=[
'six',
'uhashring',
]
)