forked from mbr/flask-kvsession
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (39 loc) · 1.21 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
import os
import sys
from setuptools import setup
if sys.version_info < (2, 7):
tests_require = ['unittest2']
else:
tests_require = []
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='Flask-KVSession',
version='0.5dev',
url='https://github.com/mbr/flask-kvsession',
license='MIT',
author='Marc Brinkmann',
author_email='[email protected]',
description='Transparent server-side session support for flask',
long_description=read('README.rst'),
packages=['tests'],
py_modules=['kvsession'],
# namespace_packages=['flaskext'],
zip_safe=False,
platforms='any',
install_requires=[
'Flask', 'simplekv', 'werkzeug', 'itsdangerous'
],
tests_require=tests_require,
test_suite='tests',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)