-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (67 loc) · 1.96 KB
/
Copy pathpyproject.toml
File metadata and controls
80 lines (67 loc) · 1.96 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mistode"
version = "0.1.3"
description = "Python and C code obfuscation tool"
readme = "README.md"
requires-python = ">=3.14"
authors = [
{ name = "for13to1", email = "for13to1@outlook.com" }
]
keywords = ["obfuscation", "security", "code", "python", "c"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Topic :: Security",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
]
dependencies = []
[project.urls]
"Homepage" = "https://github.com/for13to1/mistode"
"Bug Reports" = "https://github.com/for13to1/mistode/issues"
"Source" = "https://github.com/for13to1/mistode"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"ruff>=0.16.3",
]
test = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
[tool.ruff]
line-length = 88
target-version = "py314"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "C90"]
ignore = ["E203"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["E402", "E501", "W291", "W293"]
[tool.ruff.lint.mccabe]
max-complexity = 10
[tool.ruff.format]
quote-style = "double"
[project.scripts]
mistode = "mistode.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/mistode"]
## Mistode Configuration Example
## Disable comments below to enable custom default values
# [tool.mistode]
# style = "random" # Use random style instead of default similar
# length = 20 # Use 20 character length instead of default 16
# stats = true # Always show statistics
# seed = 42 # Optional: Fixed random seed