-
Notifications
You must be signed in to change notification settings - Fork 44
/
setup.cfg
38 lines (35 loc) · 820 Bytes
/
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
[metadata]
name = penta
version = 0.0.1
description = Open source all-in-one CLI tool to semi-automate pentesting
author='Takuya Sawada',
author_email='[email protected]',
long_description = file: README.md
long_description_content_type = text/markdown
license_file = LICENSE
url='https://github.com/takuzoo3868/penta',
keywords = "cli pentest security",
[options]
pythonrequire = >=3.6
packages = find:
[options.packages.find]
exclude = tests
[flake8]
exclude =
.venv,
# No need to traverse our git directory
.git,
logs,
data,
*.pyc
filename = *.py
ignore = E203, E266, E501, W503
count = yes
show-source = yes
statistics = yes
exit-zero = yes
# GitHub editor is 127 chars wid
max-line-length = 127
max-complexity = 18
select = B,C,E,F,I,W,T4,B9
import-order-style = google