-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 881 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 881 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
from setuptools import setup, find_packages
version = '0.1.0-dev'
setup(name='memcrashed',
version=version,
description="A Memcached sharding and failover proxy",
long_description="""\
A Memcached sharding and failover proxy""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='memcashed proxy sharding failover',
author='Diogo Baeder',
author_email='contato@diogobaeder.com.br',
url='https://github.com/diogobaeder/memcrashed',
license='BSD 2-Clause',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'tornado',
],
entry_points={
'console_scripts': [
'memcrashed = memcrashed.server:main',
],
},
)