-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.35 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
[build-system]
requires = ["uv_build>=0.11.3,<0.12"]
build-backend = "uv_build"
[project]
name = "dictify"
version = "4.0.2"
description = "Documents schema and data validation"
readme = "README.md"
requires-python = ">=3.12"
dependencies = ["cyclopts>=4.0.0,<5.0.0"]
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Nitipit Nontasuwan", email = "nitipit@gmail.com" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://keenlycode.github.io/dictify/"
Documentation = "https://keenlycode.github.io/dictify/"
Source = "https://github.com/keenlycode/dictify"
Changelog = "https://github.com/keenlycode/dictify/blob/main/CHANGELOG.md"
"Bug Tracker" = "https://github.com/keenlycode/dictify/issues"
[project.scripts]
dictify = "dictify.cli.dictify:main"
[dependency-groups]
dev = [
"pytest>=8.4",
"ruff",
"twine>=6.1",
"ty",
]
docs = [
"mkdocs>=1.6",
"mkdocs-shadcn>=0.10.3",
"Pygments>=2.19",
"pymdown-extensions>=10.0",
"mike>=2.1.4",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
target-version = "py312"
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]