forked from askiphy/BarsAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
58 lines (53 loc) · 1.47 KB
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
[project]
name = "bars-api"
version = "2.2.0"
dependencies = [
"aiohttp==3.13.3",
"fake-useragent==2.2.0",
]
requires-python = ">=3.11"
authors = [
{name="askiphy", email="durovam06@gmail.com"},
{name="iamlostshe", email="vanamelcikov7275@gmail.com"}
]
maintainers = [
{name="askiphy", email="durovam06@gmail.com"},
{name="iamlostshe", email="vanamelcikov7275@gmail.com"}
]
description = "Library to get data from Bars School Diary"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
keywords = [
"school", "школа",
"diary", "дневник",
"pars", "parser", "парсер",
"parsing", "парсинг",
"api", "апи"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: aiohttp",
"Framework :: AsyncIO",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: News/Diary",
"Topic :: Text Processing :: Markup :: Markdown",
"Typing :: Typed"
]
[project.urls]
Homepage = "https://github.com/askiphy/bars_api"
Documentation = "https://bars-api.readthedocs.io"
Repository = "https://github.com/askiphy/bars_api.git"
"Bug Tracker" = "https://github.com/askiphy/bars_api/issues"
Changelog = "https://github.com/askiphy/bars_api/CHANGELOG.md"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
# Ошибки связанные с кирилицей
"RUF001", "RUF002", "RUF003",
# TODO
"TD003", "FIX002",
# Cравнение магических значений
"PLR2004",
# Работа с датой
"DTZ005",
]