-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 817 Bytes
/
setup.py
File metadata and controls
33 lines (28 loc) · 817 Bytes
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
import os
from setuptools import setup, find_packages
PACKAGE = "elasticache_pyclient"
NAME = "elasticache_pyclient"
KEYWORDS = ("aws", "ealsticache")
VERSION = '2.1.2'
DESCRIPTION = "pythone client for elasticache auto discovery"
LICENSE = 'LGPL'
URL = "https://github.com/yupeng820921/elasticache_pyclient"
AUTHOR = "yupeng"
AUTHOR_EMAIL = "yupeng0921@gmail.com"
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name=NAME,
version=VERSION,
keywords=KEYWORDS,
description=DESCRIPTION,
long_description=read('README.md'),
license=LICENSE,
url=URL,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
packages=find_packages(),
include_package_data=True,
platforms='any',
install_requires=['python-memcached', 'uhashring'],
)