-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1009 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (32 loc) · 1009 Bytes
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
# -*- coding:utf-8 -*-
"""
Flask Waf
---------------
检测针对Flask的恶意攻击请求
"""
from setuptools import setup,find_packages
setup(
name='Flask-Waf',
version='1.0.0',
url='https://github.com/hamdell/flask_waf',
license='MIT',
author='Hamdell',
author_email='hamdell@163.com',
description='web applaction firewall of flask',
long_description=__doc__,
packages = find_packages(),
zip_safe=False,
platforms='any',
package_data={'flask_waf': ['rules/*.json']},
install_requires=['Flask'],
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'
]
)