First tests!

This commit is contained in:
2022-03-10 11:22:04 +01:00
parent d7f8fcec88
commit 1494f1a5e0
6 changed files with 97 additions and 0 deletions

13
setup.py Normal file
View File

@ -0,0 +1,13 @@
from setuptools import find_packages, setup
setup(
name='jail2ban',
version='0.0.1',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'flask',
'flask_httpauth',
],
)