-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (34 loc) · 1.11 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
[tool.poetry]
name = "configmate"
version = "0.1.8"
description = "Practical and versatile configuration parsing in Python."
authors = ["Arthur Böök"]
license = "Apache 2.0"
readme = "README.md"
packages = [{ include = "configmate", from = 'src' }]
include = ["LICENSE"]
keywords = ["configuration", "config", "parser", "config-parser"]
[tool.poetry.urls]
repository = "https://github.com/ArthurBook/configmate"
[tool.poetry.dependencies]
python = "^3.8"
configmate-yamlparser = { version = "*", optional = true }
configmate-tomlparser = { version = "*", optional = true }
configmate-pydantic-validator = { version = "^0.1.0", optional = true }
[tool.poetry.group.dev.dependencies]
black = "^23.9.1"
mypy = "^1.7.1"
pylint = "^3.0.2"
pytest = "^7.4.2"
tox = "^4.11.3"
isort = "^5.12.0"
[tool.poetry.group.docs.dependencies]
pygments = "^2.17.2"
[tool.poetry.extras]
standard = ["configmate-yamlparser", "configmate-pydantic-validator"]
yaml = ["configmate-yamlparser"]
toml = ["configmate-tomlparser"]
pydantic = ["configmate-pydantic-validator"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"