-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
101 lines (85 loc) · 2.69 KB
/
pyproject.toml
File metadata and controls
101 lines (85 loc) · 2.69 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
[project]
name = "ipsumheroes"
version = "0.1.0"
description = "A lorem ipsum generator inspired by history’s luminaries and heroes."
readme = "README.md"
keywords = ["loremipsum", "lorem", "ipsum", "heroes", "luminaries", "placeholder", "text-generator"]
authors = [ { name = "Rik Roos, Roos IT Logics", email = "opensource@bytelogic.nl" } ]
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Text Processing",
"Topic :: Software Development :: Libraries"
]
dependencies = [
"konvigius>=0.0.4",
]
[project.urls]
Homepage = "https://github.com/RikRoos/ipsumheroes"
Documentation = "https://github.com/RikRoos/ipsumheroes/blob/master/MANUAL.md"
Changelog = "https://github.com/RikRoos/ipsumheroes/blob/master/src/ipsumheroes/CHANGELOG.md"
Source = "https://github.com/RikRoos/ipsumheroes/tree/master/src/ipsumheroes"
Issues = "https://github.com/RikRoos/ipsumheroes/issues"
[build-system]
requires = ["uv_build>=0.9.5,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"black>=25.9.0",
"mypy>=1.18.2",
"pyright>=1.1.406",
"pytest>=8.4.2",
"pytest-cov>=7.0.0",
"ruff>=0.14.0",
]
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple/"
publish-url = "https://upload.pypi.org/legacy/"
explicit = true
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[tool.uv.sources]
konvigius = { path = "../konvigius/dist/konvigius-0.0.4-py3-none-any.whl" }
[tool.black]
line-length = 88
exclude = '''
(
/src/ipsumheroes/resources/config_schema\.py$
)
'''
[tool.ruff]
lint.ignore = ["E731"]
[tool.pyright]
# Paths to analyze
include = ["src"]
exclude = ["venv", "build", "dist", "tests", "docs", "examples"]
# Type checking strictness
typeCheckingMode = "basic" # "off" | "basic" | "strict"
# Target Python version
pythonVersion = "3.10"
# Report controls
# reportMissingImports = true
# reportUnusedVariable = "warning"
# reportUnnecessaryTypeIgnoreComment = "warning"
reportUnknownVariableType = "none"
reportUnknownMemberType = "none"
reportAttributeAccessIssue = "none"
# reportUnknownArgumentType = "warning"
# reportUnknownLambdaType = "none" # can be noisy
# Stub generation and typing completeness
#useLibraryCodeForTypes = true
# Optional: if you have custom source roots
#extraPaths = ["src"]
# Optional: treat some folders as namespace packages
# namespacePackages = ["my_namespace_package"]
# Optional: enable/disable specific diagnostics
reportPrivateUsage = "none"
reportImplicitStringConcatenation = "warning"