forked from ccaiccie/EasyWall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
82 lines (78 loc) · 2.33 KB
/
setup.cfg
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# for a list of all values see
# https://setuptools.readthedocs.io/en/latest/setuptools.html
[metadata]
name = easywall
version = 0.3.1
url = https://github.com/jpylypiw/easywall
project_urls =
Bug Tracker = https://github.com/jpylypiw/easywall/issues
Documentation = https://github.com/jpylypiw/easywall/blob/master/README.md
Source Code = https://github.com/jpylypiw/easywall
author = Jochen Pylypiw
author_email = [email protected]
classifiers =
Framework :: Flask
Topic :: System :: Networking :: Firewalls
Development Status :: 4 - Beta
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Programming Language :: Unix Shell
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Operating System :: POSIX :: Linux
Operating System :: Unix
Intended Audience :: Developers
Intended Audience :: System Administrators
Natural Language :: English
license = GPL-3.0
description = Web interface for easy use of the IPTables firewall on Linux systems written in Python3
long_description = file: README.md
long_description_content_type = text/markdown
keywords = firewall, iptables, linux, framework, easywall
[options]
zip_safe = false
setup_requires =
setuptools
pytest-runner
python_requires = >= 3.7
tests_require =
pytest-cov
pytest-flake8
pytest-mypy
pytest
types-PyYAML
include_package_data = true
packages = find:
install_requires =
watchdog
Flask
natsort
flask-ipban
pyyaml
[flake8]
max-line-length = 100
doctests = True
exclude = .git, .eggs, __pycache__, tests/, docs/, build/, dist/
[mypy]
files = easywall
warn_return_any = True
warn_unused_configs = True
ignore_missing_imports = True
strict_equality = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_no_return = True
warn_unreachable = True
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
check_untyped_defs = True
disallow_untyped_decorators = True
disallow_any_unimported = False
disallow_any_expr = False
disallow_any_decorated = False
disallow_any_explicit = False
disallow_any_generics = False
disallow_subclassing_any = False