-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (40 loc) · 1005 Bytes
/
pyproject.toml
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
49
50
[tool.poetry]
name = "lotb"
version = "0.0.5"
description = "Lord of the Telegram bots"
authors = ["brokenpip3 <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.scripts]
lotb = "lotb.lotb:main"
[tool.poetry.dependencies]
python = "^3.12"
python-telegram-bot = {extras = ["job-queue"], version = "^21.2"}
feedparser = "^6.0.11"
python-dateutil = "^2.9.0.post0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.1"
pytest-asyncio = "^0.25.3"
types-python-dateutil = "^2.9.0.20241206"
pytest-cov = "^6.0.0"
[tool.pytest.ini_options]
pythonpath = ["lotb"]
[tool.ruff]
line-length = 120
indent-width = 2
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.mypy]
ignore_missing_imports = true
follow_imports_for_stubs = true
disallow_untyped_defs = false
[tool.coverage.run]
relative_files = true
omit = [".venv"]
[tool.coverage.report]
fail_under = 70
skip_empty = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"