-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (54 loc) · 1.39 KB
/
pyproject.toml
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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=64",
"wheel"
]
[project]
authors = [
{email = "[email protected]", name = "Linpg Foundation"}
]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython"
]
dependencies = ["mypy"]
description = "A set of tools for managing, compiling, and uploading your own package."
license = {file = "LICENSE"}
name = "linpgtoolbox"
readme = "README.md"
requires-python = ">=3.11"
version = "25.2"
[project.scripts]
linpgtb = "linpgtoolbox.cli:cli"
[project.urls]
"Bug Tracker" = "https://github.com/LinpgFoundation/linpg-toolbox/issues"
"Homepage" = "https://github.com/LinpgFoundation/linpg-toolbox"
[tool.black]
target-version = ['py313']
[tool.linpgtoolbox]
ignores = [".*_compiler\\.py$"]
includes = [
"CODE_OF_CONDUCT.md",
"LICENSE",
"README.md"
]
[tool.mypy]
disallow_any_generics = true
disallow_untyped_calls = true
disallow_untyped_defs = true
python_version = "3.13"
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
[tool.setuptools.package-data]
"*" = ["*"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.tomlsort]
all = true
in_place = true
spaces_indent_inline_array = 4