-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
142 lines (129 loc) · 2.9 KB
/
pyproject.toml
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sereto"
version = "0.0.16"
description = "Security Reporting Tool."
readme = "README.md"
requires-python = ">=3.11"
license = {file = "LICENSE"}
authors = [
{ name = "Tomáš Stefan", email = "t@s4n.cz" },
]
keywords = [
"automate",
"markdown",
"pandocfilters",
"pdf",
"penetration testing",
"pentest",
"report",
"tex",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: Pydantic :: 2",
"Framework :: Pydantic",
"Framework :: Pytest",
"Framework :: tox",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python",
"Topic :: Security",
"Topic :: Text Processing :: Markup :: LaTeX",
"Topic :: Text Processing :: Markup :: Markdown",
"Topic :: Text Processing :: Markup",
"Topic :: Text Processing",
"Typing :: Typed",
]
dependencies = [
"annotated-types~=0.7.0",
"argon2-cffi~=23.1.0",
"click~=8.1.7",
"click-repl~=0.3.0",
"cryptography~=43.0.1",
"humanize~=4.11.0",
"jinja2~=3.1.4",
"keyring~=25.5.0",
"matplotlib~=3.9.2",
"pandocfilters~=1.5.1",
"pathspec>=0.12.1",
"pydantic-settings~=2.6.0",
"pydantic~=2.9.1",
"pydantic[email]",
"pypdf~=5.1.0",
"python-frontmatter~=1.1.0",
"rich~=13.9.2",
"ruamel.yaml>=0.18.6",
"semver~=3.0.2",
"toml>=0.10.2",
"Unidecode~=1.3.8",
]
[project.optional-dependencies]
docs = [
"mkdocs-material",
"mkdocstrings[python]",
]
[project.urls]
Changelog = "https://github.com/s3r3t0/sereto/blob/main/CHANGELOG.md"
Documentation = "https://sereto.s4n.cz"
Homepage = "https://github.com/s3r3t0/sereto"
Source = "https://github.com/s3r3t0/sereto"
[project.scripts]
sereto = "sereto.cli.cli:cli"
[tool.black]
line-length = 119
[tool.flake8]
max-line-length = 119
[tool.isort]
profile = "black"
[tool.mypy]
plugins = [
"pydantic.mypy"
]
follow_imports = "silent"
warn_redundant_casts = true
warn_unused_ignores = true
disallow_any_generics = true
check_untyped_defs = true
no_implicit_reexport = true
disallow_untyped_defs = true
[tool.pydantic-mypy]
init_forbid_extra = true
init_typed = true
warn_required_dynamic_aliases = true
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
pythonpath = "."
[tool.ruff]
line-length = 119
[tool.ruff.lint]
select = [
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
# pycodestyle
"E",
"W",
# pydocstyle
# "D", # TODO
# Pyflakes
"F",
# pyupgrade
"UP",
]