-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
65 lines (59 loc) · 1.05 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[project]
name = "eduzenbot"
description = "A bot for telegram"
readme = "README.md"
version = "v0.beta"
requires-python = ">=3.13"
keywords = []
authors = [
{ name = "Eduardo Enriquez (eduzen)", email = "[email protected]" },
]
dependencies = [
"beautifulsoup4",
"emoji",
"peewee",
"python-telegram-bot[job-queue]",
"sentry-sdk",
"yfinance",
"python-dotenv",
"logfire>=2.11.1",
"httpx>=0.28.1",
"psycopg>=3.2.4",
"tabulate>=0.9.0",
]
[dependency-groups]
dev = [
"pre-commit>=4.0.1",
"ipython",
"ipdb",
"factory-boy",
"pytest",
"coverage",
"pytest-mock",
"pytest-randomly",
"pytest-asyncio>=0.25.2",
"mypy",
"respx>=0.22.0",
]
[tool.isort]
profile = "black"
[tool.ruff]
target-version = "py313"
line-length = 120
[tool.coverage.run]
branch = true
parallel = true
omit = [
"eduzenbot/__about__.py",
"eduzenbot/scripts/*",
]
[tool.coverage.report]
show_missing = true
skip_covered = true
exclude_lines = [
"no cov",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]
[tool.coverage.json]
pretty_print=true