2 Commits

Author SHA1 Message Date
296b6404d2 Update pyproject.toml 2025-10-28 14:47:36 +03:00
38fdd347a5 Update pyproject.toml 2025-10-28 10:34:26 +03:00
2 changed files with 25 additions and 3 deletions

1
.gitignore vendored
View File

@@ -1,2 +1,3 @@
src/config_manager/__pycache__/basic_application.cpython-312.pyc
venv/
.vscode/

View File

@@ -1,3 +1,24 @@
[build-system]
requires = ["setuptools>=42"]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "config_manager"
version = "1.0.2"
description = "Config manager for building applications"
authors = [
{ name = "Aleksei Zosimov", email = "lesha.spb@gmail.com" }
]
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"PyYAML>=6.0",
]
[project.urls]
Homepage = "https://git.lesha.spb.ru/alex/config_manager"
Documentation = "https://git.lesha.spb.ru/alex/config_manager"
Repository = "https://git.lesha.spb.ru/alex/config_manager"
[tool.setuptools.packages.find]
where = ["src"]