-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (63 loc) · 1.79 KB
/
pyproject.toml
File metadata and controls
70 lines (63 loc) · 1.79 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "obfuscator"
version = "0.1.0"
description = "A Lua code obfuscator with GUI"
readme = "README.md"
requires-python = ">=3.9"
authors = [
{name = "Obfuscator Developers", email = "dev@obfuscator.local"},
]
license = {text = "MIT"}
keywords = ["lua", "obfuscator", "code-protection", "pyqt6"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Code Generators",
]
dependencies = [
"PyQt6==6.10.0",
"luaparser==4.0.0",
"cryptography>=41.0.0",
"psutil>=5.9.0",
]
[project.optional-dependencies]
dev = []
[project.urls]
Homepage = "https://github.com/<your-username>/python-obfuscator"
Documentation = "https://github.com/<your-username>/python-obfuscator#readme"
Repository = "https://github.com/<your-username>/python-obfuscator"
"Bug Tracker" = "https://github.com/<your-username>/python-obfuscator/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"--verbose",
"--cov=src/obfuscator",
"--cov-report=term-missing",
"--cov-report=html",
]
[tool.coverage.run]
source = ["src"]
omit = ["*/tests/*", "*/__pycache__/*"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
]