1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
# PEP 518: https://www.python.org/dev/peps/pep-0518/
[tool.poetry]
name = "ttls"
version = "1.9.0"
description = "Twinkly Twinkly Little Star"
authors = ["Jakob Schlyter <jakob@schlyter.se>"]
license = "BSD-2-Clause"
classifiers = ["License :: OSI Approved :: BSD License"]
readme = "README.md"
repository = "https://github.com/jschlyter/ttls"
[tool.poetry.scripts]
ttls = "ttls.cli:main"
[tool.poetry.dependencies]
python = "^3.9"
aiohttp = "^3.8.5"
[tool.poetry.group.dev.dependencies]
pytest = "^8"
aiounittest = "^1.4.2"
ruff = "^0.6.9"
pytest-ruff = "^0.4.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
ignore = ["E501"]
|