-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 985 Bytes
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 985 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
[project]
name = "pars-diary"
version = "0.1.1"
description = "Проект для улучшения успеваемости учеников, путем внедрения современных технологий."
authors = [{ name = "Ivan Melcikov", email = "vanamelcikov7275@gmail.com" }]
license = "MIT"
readme = "README.md"
dependencies = [
"aiogram==3.27.0",
"bars-api",
"cait-api",
"fake-useragent==2.2.0",
"g4f>=0.6.1.6",
"loguru==0.7.3",
"pydantic-settings==2.13.1",
"matplotlib==3.10.8",
]
[tool.ruff.lint]
select = ["ALL"]
ignore = [
# Ошибки связанные с кирилицей
"RUF001", "RUF002", "RUF003",
# TODO
"TD003", "FIX002",
# Cравнение магических значений
"PLR2004",
# Работа с датой
"DTZ005",
]
[tool.uv.sources]
cait-api = { git = "https://github.com/iamlostshe/cait-api" }
bars-api = { git = "https://github.com/iamlostshe/bars-api" }