24 lines
483 B
TOML
24 lines
483 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
|
|
[project]
|
|
name = "config_manager"
|
|
version = "1.0.2"
|
|
description = "Basic application with configuration and logging features."
|
|
authors = [
|
|
{ name = "Aleksei Zosimov", email = "lesha.spb@gmail.com" }
|
|
]
|
|
dependencies = [
|
|
"PyYAML>=6.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest",
|
|
# другие dev-зависимости
|
|
] |