-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (33 loc) · 1 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
[tool.poetry]
name = "12factor-configclasses"
version = "2.0.1"
description = "Like dataclasses but for config."
authors = ["Pablo Cabezas <pabcabsal@gmail.com>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/kingoodie/configclasses"
repository = "https://github.com/kingoodie/configclasses"
packages = [
{ include = "configclasses" },
]
[tool.poetry.dependencies]
python = "^3.9"
tomlkit = {version = "^0.12", extras = ["toml"], optional = true}
python-dotenv = {version = "^1.0", extras = ["dotenv"], optional = true}
pyyaml = {version = "^6", extras = ["yaml"], optional = true}
[tool.poetry.extras]
toml = ["tomlkit"]
dotenv = ["python-dotenv"]
yaml = ["pyyaml"]
full = ["tomlkit", "python-dotenv", "pyyaml"]
[tool.poetry.group.dev.dependencies]
pytest = "^7.4"
tomlkit = {version = "^0.12"}
python-dotenv = {version = "^1.0"}
pyyaml = {version = "^6"}
pytest-mypy = "^0.10"
nox = "^2023.4.22"
coverage = "^7.3.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"