|
1 | 1 | #!/usr/bin/env python
|
2 |
| -import os |
3 | 2 | from setuptools import setup
|
4 | 3 |
|
5 |
| -from redis import __version__ |
6 |
| - |
7 |
| - |
8 |
| -f = open(os.path.join(os.path.dirname(__file__), 'README.rst')) |
9 |
| -long_description = f.read() |
10 |
| -f.close() |
11 |
| - |
12 |
| -setup( |
13 |
| - name='redis', |
14 |
| - version=__version__, |
15 |
| - description='Python client for Redis key-value store', |
16 |
| - long_description=long_description, |
17 |
| - long_description_content_type='text/x-rst', |
18 |
| - url='https://github.com/andymccurdy/redis-py', |
19 |
| - author='Andy McCurdy', |
20 |
| - author_email='sedrik@gmail.com', |
21 |
| - maintainer='Andy McCurdy', |
22 |
| - maintainer_email='sedrik@gmail.com', |
23 |
| - keywords=['Redis', 'key-value store'], |
24 |
| - license='MIT', |
25 |
| - packages=['redis'], |
26 |
| - python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", |
27 |
| - extras_require={ |
28 |
| - 'hiredis': [ |
29 |
| - "hiredis>=0.1.3", |
30 |
| - ], |
31 |
| - }, |
32 |
| - classifiers=[ |
33 |
| - 'Development Status :: 5 - Production/Stable', |
34 |
| - 'Environment :: Console', |
35 |
| - 'Intended Audience :: Developers', |
36 |
| - 'License :: OSI Approved :: MIT License', |
37 |
| - 'Operating System :: OS Independent', |
38 |
| - 'Programming Language :: Python', |
39 |
| - 'Programming Language :: Python :: 2', |
40 |
| - 'Programming Language :: Python :: 2.7', |
41 |
| - 'Programming Language :: Python :: 3', |
42 |
| - 'Programming Language :: Python :: 3.5', |
43 |
| - 'Programming Language :: Python :: 3.6', |
44 |
| - 'Programming Language :: Python :: 3.7', |
45 |
| - 'Programming Language :: Python :: 3.8', |
46 |
| - ] |
47 |
| -) |
| 4 | +setup() |
0 commit comments