-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 746 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from distutils.core import setup
setup(
name='wlister',
version='0.1.0',
author='Elvis Tombini',
author_email='elvis@mapom.me',
packages=['wlister'],
url='https://github.com/etombini/wlister',
license='LICENSE.txt',
description='Web application firewall designed to whitelist and/or blacklist HTTP requests.',
long_description=open('readme.md').read(),
install_requires=["jsonschema >= 2.3.0"],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"License :: OSI Approved",
"Operating System :: POSIX :: Linux",
"Topic :: Security",
"Topic :: Internet :: WWW/HTTP",
]
)