forked from flash286/flask-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (46 loc) · 1.49 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
#!/usr/bin/env python3
import io
from setuptools import setup
with io.open('README.rst', encoding='utf-8') as f:
README = f.read()
with io.open('HISTORY.rst', encoding='utf-8') as f:
HISTORY = f.read()
setup(
name='Flask-Redis',
version='0.1.0',
url='https://github.com/underyx/flask-redis',
author='Rhys Elsmore',
author_email='[email protected]',
maintainer='Bence Nagy',
maintainer_email='[email protected]',
download_url='https://github.com/underyx/flask-redis/releases',
description='Redis Extension for Flask Applications',
long_description=README + '\n\n' + HISTORY,
py_modules=['flask_redis'],
package_data={'': ['LICENSE']},
zip_safe=False,
install_requires=[
'Flask>=0.8',
'redis>=2.7.6',
],
extras_require={
'develop': [
'invoke',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)