-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
58 lines (48 loc) · 1.34 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
52
53
54
55
56
57
58
#!/usr/bin/env python
"""
flask-xsrf
~~~~~~~~~~
a flask extension for defending against cross-site request forgery attacks
(xsrf/csrf).
links
`````
* `docs <http://gregorynicholas.github.io/flask-xsrf>`_
* `source <http://github.com/gregorynicholas/flask-xsrf>`_
* `package <http://packages.python.org/flask-xsrf>`_
* `travis-ci <http://travis-ci.org/gregorynicholas/flask-xsrf>`_
"""
from setuptools import setup
__version__ = "1.0.3"
with open("requirements.txt", "r") as f:
requires = f.readlines()
with open("README.md", "r") as f:
long_description = f.read()
setup(
name='flask-xsrf',
version=__version__,
url='http://github.com/gregorynicholas/flask-xsrf',
license='MIT',
author='gregorynicholas',
author_email='gn@gregorynicholas.com',
description=__doc__,
long_description=long_description,
zip_safe=False,
platforms='any',
install_requires=requires,
py_modules=[
'flask_xsrf',
'flask_xsrf_tests',
],
dependency_links=[
],
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'
]
)