-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
106 lines (90 loc) · 2.38 KB
/
pyproject.toml
File metadata and controls
106 lines (90 loc) · 2.38 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "xor-cipher"
version = "5.0.2"
description = "Simple, reusable and optimized XOR ciphers in Python."
readme = "README.md"
requires-python = ">= 3.9"
license.file = "LICENSE"
keywords = ["python", "xor", "cipher"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = ["xor-cipher-core >= 1.2.0"]
[project.urls]
Homepage = "https://github.com/GDPSApp/xor-cipher-python"
Documentation = "https://xor-cipher.gdps.app/"
Issues = "https://github.com/GDPSApp/xor-cipher-python/issues"
Repository = "https://github.com/GDPSApp/xor-cipher-python"
[[project.authors]]
name = "GDPS App"
email = "hello@gdps.app"
[tool.uv]
dev-dependencies = [
# checks
"ruff >= 0.11.13",
"mypy >= 1.16.0",
# tests
"coverage >= 7.9.0",
"pytest >= 8.4.0",
"pytest-cov >= 6.2.1",
"hypothesis >= 6.135.9",
# docs
"mkdocs >= 1.6.1",
"mkdocs-material >= 9.6.14",
"mkdocstrings[python] >= 0.29.1",
# changelogs
"changelogging >= 2.7.0",
]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
ignore = [
# module level import not at top of file
"E402",
]
[tool.mypy]
strict = true
[tool.coverage.run]
source = ["src"]
[tool.coverage.report]
ignore_errors = true
exclude_lines = [
"pragma: never",
"pragma: no cover",
"if TYPE_CHECKING",
"@overload",
"@required",
"raise NotImplementedError",
"raise AssertionError",
"def __repr__",
]
[tool.coverage.html]
directory = "coverage"
[tool.pytest.ini_options]
addopts = "--cov src"
testpaths = ["tests"]
[tool.changelogging.context]
name = "xor-cipher"
version = "5.0.2"
url = "https://github.com/GDPSApp/xor-cipher-python"
[tool.changelogging.formats]
title = "[{{version}}]({{url}}/tree/v{{version}}) ({{date}})"
fragment = "{{content}} ([#{{id}}]({{url}}/pull/{{id}}))"
[tool.pyright]
venvPath = "."
venv = ".venv"