forked from lincolnloop/goodconf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (57 loc) · 1.59 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
[project]
name = "goodconf"
description = "Load configuration variables from a file or environment"
readme = "README.rst"
requires-python = ">=3.7"
authors = [
{name = "Peter Baumgartner", email = "[email protected]"}
]
keywords = ["env", "config", "json", "yaml", "toml"]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
dynamic = ["version"]
dependencies = [
"pydantic>=1.7"
]
[project.optional-dependencies]
yaml = ["ruamel.yaml>=0.17.0"]
toml = ["tomlkit>=0.11.6"]
tests = [
"django>=3.2.0",
"ruamel.yaml>=0.17.0",
"tomlkit>=0.11.6",
"pytest==7.2.*",
"pytest-cov==4.0.*",
"pytest-mock==3.10.*"
]
[project.urls]
homepage = "https://github.com/lincolnloop/goodconf/"
changelog = "https://github.com/lincolnloop/goodconf/blob/main/CHANGES.rst"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
]
[tool.hatch.build.hooks.vcs]
version-file = "goodconf/_version.py"
[tool.hatch.version]
source = "vcs"
[tool.isort]
profile = "black"
default_section = "THIRDPARTY"
known_first_party = "goodconf"
[tool.pytest.ini_options]
addopts = "--cov --cov-branch"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"