-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (41 loc) · 1.15 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
[build-system]
requires = [
"setuptools>=64",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "linpgtoolbox"
version = "24.06"
authors = [
{name = "Linpg Foundation", email = "[email protected]"},
]
description = "A set of tools for managing, compiling, and uploading your own package."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: OS Independent",
]
license = {file = "LICENSE"}
dependencies = ["mypy"]
[project.urls]
"Homepage" = "https://github.com/LinpgFoundation/linpg-toolbox"
"Bug Tracker" = "https://github.com/LinpgFoundation/linpg-toolbox/issues"
[tool.mypy]
python_version = "3.12"
disallow_any_generics = true
disallow_untyped_defs = true
disallow_untyped_calls = true
warn_return_any = true
warn_redundant_casts = true
warn_unreachable = true
[tool.black]
target-version = ['py312']
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*"]