31 lines
688 B
TOML
31 lines
688 B
TOML
[build-system]
|
|
requires = ["setuptools>=75.3.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "MailOrderBot"
|
|
description = "Config manager for building applications"
|
|
version = "1.0.3"
|
|
authors = [
|
|
{ name = "Aleksei Zosimov", email = "lesha.spb@gmail.com" }
|
|
]
|
|
readme = "README.md"
|
|
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"python-dotenv>=1.0.0"
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.lesha.spb.ru/alex/mail_order_bot"
|
|
Documentation = "https://git.lesha.spb.ru/alex/mail_order_bot"
|
|
Repository = "https://git.lesha.spb.ru/alex/mail_order_bot"
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = [
|
|
"--import-mode=importlib",
|
|
] |