-
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.39 KB
/
pyproject.toml
File metadata and controls
58 lines (53 loc) · 1.39 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 = "cait-api"
version = "0.1.2"
authors = [
{ name = "iamlostshe", email = "vanamelcikov7275@gmail.com" },
]
maintainers = [
{ name = "iamlostshe", email = "vanamelcikov7275@gmail.com" },
]
license = "MIT"
readme = "README.md"
dependencies = [
"aiohttp>=3.12.15",
"lxml>=6.0.1",
]
keywords = [
"pars",
"parsing",
"api",
"framework",
"wrapper",
"asyncio",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Typing :: Typed",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.9"
[project.urls]
Homepage = "https://github.com/iamlostshe/cait-api"
Issues = "https://github.com/iamlostshe/cait-api/issues"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
# Ошибки связанные с кирилицей
"RUF001", "RUF002", "RUF003",
# TODO
"TD003", "FIX002",
# Cравнение магических значений
"PLR2004",
# Работа с датой
"DTZ005",
]