-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (49 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
53 lines (49 loc) · 1.56 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
[project]
name = "comprehensiveconfig"
version = "1.0.1"
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 = "LGPL-3.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 :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Natural Language :: English",
"Typing :: Typed"
]
[project.urls]
Homepage = "https://summersweet.software"
# Documentation = "https://readthedocs.org" # Not yet created
Repository = "https://github.com/summersweet-software/comprehensiveconfig"
Issues = "https://github.com/summersweet-software/comprehensiveconfig/issues"