18 lines
283 B
TOML
18 lines
283 B
TOML
[tool.poetry]
|
|
name = "python-asyncio-course"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["t0xa"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.ruff]
|
|
line-length = 120
|
|
|