-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
77 lines (70 loc) · 2.02 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
71
72
73
74
75
76
77
[project]
name = "configue"
description = "Helpers to load your application configuration from YAML files"
authors = [{ name = "Illuin Technology", email = "[email protected]" }]
maintainers = [{ name = "Illuin Technology", email = "[email protected]" }]
requires-python = ">=3.9"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
]
version = "0.0.0"
dependencies = [
"pyyaml>=5.1.0,<7.0.0"
]
[project.optional-dependencies]
dev = [
"black==24.10.0",
"build==1.2.2.post1",
"mypy==1.13.0",
"pylint==3.3.2",
"pytest==8.3.4",
"pytest-cov==6.0.0",
"setuptools==75.6.0",
"twine==6.0.1",
"wheel==0.45.1",
]
[project.urls]
"Homepage" = "https://github.com/illuin-tech/configue"
"Bug Reports" = "https://github.com/illuin-tech/configue/issues"
"Source" = "https://github.com/illuin-tech/configue/"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
zip-safe = false
platforms = ["any"]
packages.find.include = ["configue", "configue.*"]
package-data.configue = ["py.typed"]
[tool.coverage]
run.source = ["configue"]
run.branch = true
report.exclude_also = [
"def __repr__",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]
[tool.mypy]
exclude = [
"env",
]
strict = true
implicit_reexport = true
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "tests.*"
allow_untyped_defs = true