forked from thefab/tornadis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (51 loc) · 1.82 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# This file is part of tornadis library released under the MIT license.
# See the LICENSE file for more information.
from setuptools import setup, find_packages
DESCRIPTION = "tornadis is an async minimal redis client for tornado " \
"ioloop designed for performances (use C hiredis parser)"
try:
with open('PIP.rst') as f:
LONG_DESCRIPTION = f.read()
except IOError:
LONG_DESCRIPTION = DESCRIPTION
with open('pip-requirements.txt') as reqs:
install_requires = [
line for line in reqs.read().split('\n') if (line and not
line.startswith('--'))]
setup(
name='tornadis',
version="0.6.0",
author="Fabien MARTY",
author_email="[email protected]",
url="https://github.com/thefab/tornadis",
packages=find_packages(),
license='MIT',
download_url='https://github.com/thefab/tornadis',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
install_requires=install_requires,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Utilities',
'Topic :: System :: Distributed Computing',
'Topic :: Software Development',
],
entry_points="""
[console_scripts]
tornadis-benchmark = tornadis.benchmark:main
""",
)