-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (37 loc) · 903 Bytes
/
pyproject.toml
File metadata and controls
47 lines (37 loc) · 903 Bytes
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
[project]
name = "python-veracrypt"
version = "0.1.2"
description = "A cross-platform Python wrapper for the VeraCrypt CLI."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "GNU GPL v3.0" }
authors = [{ name="srichs", email="srichs@pm.me" }]
dependencies = []
[project.optional-dependencies]
docs = [
"sphinx>=7.2",
]
[project.urls]
Homepage = "https://github.com/srichs/python-veracrypt"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 88
target-version = ["py311"]
[tool.isort]
profile = "black"
line_length = 88
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.mypy]
python_version = "3.11"
warn_unused_configs = true
check_untyped_defs = true