-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
27 lines (25 loc) · 912 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
26
27
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='elasticache-auto-discovery',
version='1.0.0',
description='AWS ElastiCache Auto Discovery Client for Python',
author='Studio Ousia',
author_email='[email protected]',
url='https://github.com/studio-ousia/elasticache-auto-discovery',
packages=find_packages(),
license=open('LICENSE').read(),
include_package_data=True,
keywords=['memcached', 'elasticache', 'aws'],
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
),
tests_require=['nose'],
test_suite = 'nose.collector'
)