25 lines
574 B
TOML
25 lines
574 B
TOML
[project]
|
|
name = "taxislibrary"
|
|
version = "0.1.1"
|
|
description = ""
|
|
authors = [
|
|
{name = "Evgeny (Krymmy) Momotov",email = "evgeny.momotov@gmail.com"}
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"aiohttp (>=3.12.15,<4.0.0)",
|
|
"pydantic (>=2.11.9,<3.0.0)"
|
|
]
|
|
|
|
[tool.poetry]
|
|
packages = [{include = "TaxisLibrary", from = "src"}]
|
|
|
|
[tool.poetry.group.test.dependencies]
|
|
pytest-randomly = "^3.15.0"
|
|
pytest = "^8.2.0"
|
|
pytest-asyncio = "^1.2.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|