-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
56 lines (51 loc) · 1.5 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
[build-system]
requires = [
"setuptools>=65",
# "wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "viur-toolkit"
dynamic = ["version"]
dependencies = [
"requests",
"Deprecated",
"viur-core>=3.6",
]
requires-python = ">=3.10"
authors = [
{ name = "Sven Eberth", email = "se@mausbrand.de" },
]
maintainers = [
{ name = "Sven Eberth", email = "se@mausbrand.de" },
]
description = "A kit of helpers and tools to simplify more intensive use of ViUR"
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["viur", "plugin", "backend", "toolkit"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.setuptools.dynamic]
version = { attr = "viur.toolkit.version.__version__" }
[tool.setuptools.packages.find]
where = ["src"]
[project.urls]
#TODO: Documentation = "https://viur-toolkit.readthedocs.io"
Repository = "https://github.com/viur-framework/viur-toolkit.git"
"Bug Tracker" = "https://github.com/viur-framework/viur-toolkit/issues"
#TODO: Changelog = "https://github.com/viur-framework/viur-toolkit/blob/main/CHANGELOG.md"
[tool.mypy]
exclude = [
"build/"
]
ignore_missing_imports = true
disallow_untyped_defs = true
warn_redundant_casts = true
warn_unused_ignores = true