-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
66 lines (60 loc) · 2.11 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
56
57
58
59
60
61
62
63
64
65
66
#!/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.
import sys
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('requirements.txt') as reqs:
install_requires = [
line for line in reqs.read().split('\n')
if (line and not line.startswith('--')) and (";" not in line)]
if sys.version_info[:2] == (3, 2):
install_requires.append("tornado>=4.2,<4.4")
elif sys.version_info[:2] == (3, 3):
install_requires.append("tornado>=4.2,<5.0")
else:
install_requires.append("tornado>=4.2")
setup(
name='tornadis',
version="0.8.1",
author="Fabien MARTY",
author_email="fabien.marty@gmail.com",
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',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities',
'Topic :: System :: Distributed Computing',
'Topic :: Software Development',
],
entry_points="""
[console_scripts]
tornadis-benchmark = tornadis.benchmark:main
""",
)