-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (37 loc) · 1003 Bytes
/
pyproject.toml
File metadata and controls
46 lines (37 loc) · 1003 Bytes
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
[tool.poetry]
name = "pinger"
version = "0.1.0"
description = "Telegram pinger bot"
authors = ["D0Nater <denaddressforwork@gmail.com>"]
readme = "README.md"
[tool.poetry.scripts]
pinger = "pinger.__main__:main"
[tool.poetry.dependencies]
python = "^3.12"
aiogram = "^3.10.0"
pydantic = "^2.8.2"
pydantic-settings = "^2.3.4"
[tool.poetry.group.dev.dependencies]
types-click = "^7.1.8" # For Click mypy support
black = "^24.3.0" # Code formatter
isort = "^5.12.0" # Import sorting
flake8 = "^7.0.0" # Linter
flake8-docstrings = "^1.6.0" # Docstring linter
mypy = "^1.10.0" # Static type checking
pre-commit = "^3.7.1" # Git pre commit hooks
[tool.black]
line-length = 120
target-version = ['py312']
[tool.isort]
line_length = 120
atomic = true
include_trailing_comma = true
use_parentheses = true
profile = "black"
lines_before_imports = 1
lines_after_imports = 2
combine_as_imports = true
multi_line_output = 3
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"