-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (48 loc) · 1.25 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (48 loc) · 1.25 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "omega-protocol"
version = "2.0.0"
description = "Transparent Windows data sanitization suite with PySide6 GUI and native storage backend."
readme = "README.md"
requires-python = ">=3.12"
authors = [{ name = "X-3306" }]
license = { text = "GNU Affero General Public License v3.0" }
dependencies = [
"PySide6>=6.10,<7",
"jinja2>=3.1,<4",
"reportlab>=4.4,<5",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3,<10",
"pytest-cov>=5,<8",
"pytest-mock>=3.14,<4",
"ruff>=0.11,<1",
"mypy>=1.15,<2",
]
build = [
"pyinstaller>=6.14,<7",
"cmake>=3.30,<5",
]
[tool.setuptools]
py-modules = ["OMEGA_BETA", "omega_offline"]
[tool.setuptools.packages.find]
include = ["omega_protocol*"]
exclude = ["legacy*", "build*", "dist*", "reports*"]
[tool.ruff]
target-version = "py312"
line-length = 120
extend-exclude = [".venv", "build", "dist", "legacy", "reports"]
[tool.ruff.lint]
select = ["B", "E", "F", "I", "SIM", "UP"]
[tool.mypy]
python_version = "3.12"
pretty = true
warn_redundant_casts = true
warn_unused_ignores = true
exclude = '^(legacy|build|dist|reports|\.venv)/'
[[tool.mypy.overrides]]
module = ["reportlab.*"]
ignore_missing_imports = true