-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
60 lines (55 loc) · 1.4 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
[tool.poetry]
name = "dataconf"
version = "3.3.0"
description = "Simple dataclasses configuration management for Python with hocon/json/yaml/properties/env-vars/dict support."
authors = []
license = "MPL-2.0"
readme = "README.md"
repository = "https://github.com/zifeo/dataconf"
include = [
"dataconf", "pyproject.toml"
]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
keywords = [
"configuration",
"dataclasses",
"yaml",
"hocon",
"json",
"properties",
"cli",
"environment variables",
]
[tool.poetry.scripts]
dataconf = 'dataconf.cli:run'
[tool.poetry.dependencies]
python = "^3.9"
python-dateutil = "^2.9.0.post0"
PyYAML = "^6.0.2"
isodate = ">=0.6.1,<0.8.0"
pyhocon = "^0.3.61"
pyparsing = "^3.1.4"
[tool.poetry.group.dev.dependencies]
pytest = ">=8.3.3"
pre-commit = ">=3.8.0"
commitizen = ">=3.29.0"
pytest-httpserver = "^1.1.0"
ruff = ">=0.6.5"
[tool.commitizen]
name = "cz_conventional_commits"
version = "3.3.0"
tag_format = "v$major.$minor.$patch$prerelease"
version_files = [
"pyproject.toml:version",
"dataconf/version.py"
]
[build-system]
requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"