-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
70 lines (62 loc) · 1.7 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
64
65
66
67
68
69
70
[project]
name = "richset"
dynamic = ["version"]
requires-python = ">=3.9"
dependencies = []
description = "richset interpolate between list, dict, set and iterables."
readme = {file = "README.md", content-type = "text/markdown"}
license = { file = "LICENSE" }
authors = [
{name = "Yui KITSU", email = "kitsuyui+github@kitsuyui.com"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
]
[project.urls]
Homepage = "https://github.com/kitsuyui/python-richset"
[tool.uv]
dev-dependencies = [
"pytest",
"pytest-cov",
"poethepoet",
"setuptools-scm",
"ruff",
"mypy",
]
[tool.setuptools]
package-data = { "richset" = ["py.typed"], "*" = ["README.md, LICENSE"] }
package-dir = { "richset" = "richset" }
[tool.setuptools_scm]
write_to = "richset/_version.py"
version_scheme = "only-version"
local_scheme = "no-local-version"
[build-system]
requires = [
"setuptools", "setuptools_scm"
]
build-backend = "setuptools.build_meta"
[tool.poe.tasks]
test = "pytest"
coverage-xml = "pytest --cov=richset --doctest-modules --cov-report=xml"
format = "ruff format richset"
check = [
{ cmd = "ruff check richset tests" },
{ cmd = "mypy richset tests" },
]
build = [
{ cmd = "python -m build"}
]
[tool.mypy]
# https://mypy.readthedocs.io/en/latest/config_file.html
strict = true
ignore_missing_imports = false
[tool.ruff]
line-length = 79