-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
39 lines (35 loc) · 1.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
39
[tool.poetry]
name = "kadet"
version = "0.3.2"
description = "Easily define and reuse complex Python objects that serialize into JSON or YAML."
homepage = "https://github.com/kapicorp/kadet"
repository = "https://github.com/kapicorp/kadet"
readme = "README.md"
keywords = ["config", "kapitan", "kadet", "yaml", "json"]
authors = ["Ricardo Amaro <ramaro@kapicorp.com>"]
license = "Apache License 2.0"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = '>=3.10'
PyYAML = ">=5.3.1"
typeguard = ">=3.0.0"
python-box = ">6.0.0"
pydantic = ">=2.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
flake8 = "^7.0.0"
pytest = "^8.1.1"
black = "^24.3.0"
pre-commit = "^3.7.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"