forked from anopheles/flask-sessionstore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (36 loc) · 1.13 KB
/
Copy pathsetup.py
File metadata and controls
39 lines (36 loc) · 1.13 KB
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
"""
Flask-Session
-------------
Flask-Session is an extension for Flask that adds support for
Server-side Session to your application.
"""
from setuptools import setup
from flask_sessionstore import __version__
setup(
name='Flask-Sessionstore',
version=__version__,
url='https://github.com/mcrowson/flask-sessionstore',
license='BSD',
author='Matthew Crowson',
author_email='matthew.d.crowson@gmail.com',
description='Adds session support to your Flask application',
long_description=__doc__,
packages=['flask_sessionstore'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'Flask>=0.8'
],
test_suite='test_session',
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)