-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (61 loc) · 1.31 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (61 loc) · 1.31 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
[tool.pytest.ini_options]
testpaths = ["test"]
pythonpath = ["src"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "confiddle"
version = "0.2.1"
authors = [
{ name="Nick Schorr", email="naschorr@gmail.com" },
]
description = "Hierarchical configuration manager powered by Pydantic"
readme = "README.md"
requires-python = ">= 3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Pydantic :: 2",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
license = "MIT"
license-files = ["LICENSE"]
dependencies = [
"pydantic>=2.12"
]
keywords = [
"config",
"configuration",
"hierarchy",
"dotnet configuration",
"appsettings",
"pydantic",
"model configuration"
]
[project.urls]
source = "https://github.com/naschorr/confiddle"
[project.optional-dependencies]
dev = [
"pytest>=9.0.3",
"click>=8",
]
deploy = [
"hatchling>=1.29.0",
"build>=1.4.4",
"twine>=6.2.0"
]
[tool.hatch.build.targets.wheel]
packages = ["src/confiddle"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/test",
"/docs",
"/README.md",
"/LICENSE",
"/pyproject.toml",
]