-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (62 loc) · 1.84 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (62 loc) · 1.84 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
[project]
name = "comprehensiveconfig"
version = "1.1.5"
description = "A library to create ergonomic, auto-validated configuration models with great support for static type annotations."
readme = "readme.md"
requires-python = ">=3.12"
dependencies = []
license = { text = "MPL-2.0-only" }
keywords = [
"config",
"configuration",
"validation",
"validator",
"ergonomic",
"models",
"model",
"pydantic-like",
"toml",
"toml-writer",
"json",
"json-writer",
"type-annotated",
"type-annotations",
]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 5 - Production/Stable",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Topic :: File Formats :: JSON",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Natural Language :: English",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://summersweet.software"
Repository = "https://github.com/summersweet-software/comprehensiveconfig"
Issues = "https://github.com/summersweet-software/comprehensiveconfig/issues"
Documentation = "https://comprehensiveconfig.readthedocs.io/en/"
[dependency-groups]
dev = [
"sphinx>=9.1.0",
"sphinx-autobuild>=2025.8.25",
"sphinx-rtd-theme>=3.1.0",
"mypy>=1.19.1",
"pytest>=9.0.2",
]
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true