-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
113 lines (103 loc) · 2.76 KB
/
Copy pathpyproject.toml
File metadata and controls
113 lines (103 loc) · 2.76 KB
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "python-obfuscation-framework"
version = "1.13.1"
description = "Python Obfuscation Framework"
readme = "README.md"
requires-python = ">=3.12"
license = "GPL-3.0-or-later"
keywords = ["cybersecurity", "obfuscation", "obfuscator", "stager", "payload"]
authors = [{ name = "deoktr", email = "35725720+deoktr@users.noreply.github.com" }]
maintainers = [{ name = "deoktr", email = "35725720+deoktr@users.noreply.github.com" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Security",
]
dependencies = [
"rope>=1.0.0",
"Pillow>=10.0.0",
"black>=25.0.0",
]
# dynamic = ["version"]
[project.optional-dependencies]
dev = [
"ruff==0.14.4",
"black==25.9.0",
"pyinstrument",
]
test = [
"pytest",
"pytest-cov",
]
build = [
"build",
"twine",
"check-manifest",
]
[project.urls]
"Homepage" = "https://github.com/deoktr/Python-Obfuscation-Framework"
"Bug Reports" = "https://github.com/deoktr/Python-Obfuscation-Framework/issues"
"Source" = "https://github.com/deoktr/Python-Obfuscation-Framework/"
[project.scripts]
pof = "pof.cli:_cli"
[tool.setuptools]
packages = ["pof"]
package-data = { "pof" = ["*.txt"] }
# [tool.setuptools.dynamic]
# version = {attr = "pof.__version__"}
[tool.black]
target-version = ["py313"]
extend-exclude = """
(
^/tests/obfuscator/test_names/code/
| ^/examples/out/
)
"""
[tool.ruff]
fix = true
target-version = "py313"
include = ["*.py"]
exclude = [
".eggs",
".git",
".mypy_cache",
".ruff_cache",
".tox",
".venv",
"__pypackages__",
"build",
"venv",
"docs",
"wip/",
"examples/",
"hello.py",
"examples/out/",
]
lint.select = ["ALL"]
lint.ignore = ["ANN", "FIX"]
lint.extend-ignore = ["ERA001", "S311", "D100", "D101", "D102", "D103", "D104", "D105", "D106", "D107", "TD001", "TD003"]
lint.isort.known-local-folder = ["pof", "test"]
lint.pydocstyle.convention = "google"
lint.extend-per-file-ignores."pof/cli.py" = ["G004"]
lint.flake8-copyright.author = "deoktr"
[tool.mypy]
ignore_missing_imports = true
show_error_codes = true
exclude = ["^tests/obfuscator/test_names/code/.*$"]
[tool.pytest.ini_options]
addopts = "-p no:warnings --cov=pof --no-cov-on-fail"