Update pyproject.toml

This commit is contained in:
2025-10-28 14:47:36 +03:00
parent 38fdd347a5
commit 296b6404d2

View File

@@ -1,24 +1,24 @@
[build-system] [build-system]
requires = ["setuptools>=61.0"] requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta" build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project] [project]
name = "config_manager" name = "config_manager"
version = "1.0.2" version = "1.0.2"
description = "Basic application with configuration and logging features." description = "Config manager for building applications"
authors = [ authors = [
{ name = "Aleksei Zosimov", email = "lesha.spb@gmail.com" } { name = "Aleksei Zosimov", email = "lesha.spb@gmail.com" }
] ]
readme = "README.md"
requires-python = ">=3.8"
dependencies = [ dependencies = [
"PyYAML>=6.0", "PyYAML>=6.0",
] ]
[project.optional-dependencies] [project.urls]
dev = [ Homepage = "https://git.lesha.spb.ru/alex/config_manager"
"pytest", Documentation = "https://git.lesha.spb.ru/alex/config_manager"
# другие dev-зависимости Repository = "https://git.lesha.spb.ru/alex/config_manager"
]
[tool.setuptools.packages.find]
where = ["src"]