-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
45 lines (38 loc) · 1.12 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
"""
flask-csrf
----------
A small Flask extension for adding CSRF protection.
Links
`````
* `documentation <http://sjl.bitbucket.org/flask-csrf/>`_
* `development version
<http://bitbucket.org/sjl/flask-csrf/get/tip.gz#egg=flask-csrf-dev`_
"""
from setuptools import setup
setup(
name='flask-csrf',
version='0.9.2',
url='http://sjl.bitbucket.org/flask-csrf/',
license='MIT',
author='Steve Losh',
author_email='[email protected]',
description='A small Flask extension for adding CSRF protection.',
long_description=__doc__,
packages=['flaskext'],
namespace_packages=['flaskext'],
zip_safe=False,
platforms='any',
install_requires=[
'Flask>0.1'
],
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'
]
)