Update pyproject.toml
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,2 +1,3 @@
|
|||||||
src/config_manager/__pycache__/basic_application.cpython-312.pyc
|
src/config_manager/__pycache__/basic_application.cpython-312.pyc
|
||||||
venv/
|
venv/
|
||||||
|
.vscode/
|
||||||
|
|||||||
@@ -1,3 +1,24 @@
|
|||||||
[build-system]
|
[build-system]
|
||||||
requires = ["setuptools>=42"]
|
requires = ["setuptools>=61.0"]
|
||||||
build-backend = "setuptools.build_meta"
|
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-зависимости
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user