-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 1.05 KB
/
setup.py
File metadata and controls
30 lines (28 loc) · 1.05 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
from setuptools import setup
setup(
name = 'flask-secure-headers',
packages = ['flask_secure_headers'],
include_package_data = True,
version = '0.6',
description = 'Secure Header Wrapper for Flask Applications',
long_description = ('Add security headers to a Flask application. '
'This is intended to be a simplified version of the '
'Twitter SecureHeaders Ruby Gem'),
license='MIT',
author = 'Tristan Waldear',
author_email = 'trwaldear@gmail.com',
url = 'https://github.com/twaldear/flask-secure-headers',
download_url = 'https://github.com/twaldear/flask-secure-headers/tarball/0.1',
keywords = ['flask', 'security', 'header'],
install_requires = ['flask'],
test_suite="nose.collector",
tests_require = ['nose'],
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Flask',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)