-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (35 loc) · 1002 Bytes
/
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
# -*- coding: utf-8 -*-
"""
Flask-Waf
---------
Adds server Waf support to your application.
:copyright: (c) 2018 by Virink
:license: BSD, see LICENSE for more details.
"""
from setuptools import setup
setup(
name='Flask-Waf',
version='1.0',
url='https://github.com/virink/flask_waf',
license='BSD',
author='Virink',
author_email='[email protected]',
description='Just a webwaf for log',
long_description=__doc__,
packages=['flask_waf'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'Flask>=0.8'
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)