26 lines
652 B
TOML
26 lines
652 B
TOML
[build-system]
|
||
requires = ["setuptools>=61.0.0"]
|
||
build-backend = "setuptools.build_meta"
|
||
|
||
[project]
|
||
name = "config_manager"
|
||
version = "2.1.4"
|
||
description = "Курсор утомил..."
|
||
authors = [
|
||
{ name = "Aleksei Zosimov", email = "lesha.spb@gmail.com" }
|
||
]
|
||
readme = "README.md"
|
||
requires-python = ">=3.8"
|
||
dependencies = [
|
||
"PyYAML>=6.0",
|
||
"fastapi>=0.100.0",
|
||
"uvicorn[standard]>=0.22.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"] |