-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
127 lines (120 loc) · 2.3 KB
/
pyproject.toml
File metadata and controls
127 lines (120 loc) · 2.3 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "vkbottle-types"
description = "VK API methods & types for vkbottle."
license = "MIT"
version = "5.199.99.20"
authors = [ { name = "timoniq" } ]
maintainers = [{ name = "luwqz1", email = "howluwqz1@gmail.com" }]
readme = "README.md"
requires-python = ">=3.10,<4.0"
dependencies = [
"pydantic (>=2.12.5,<3.0.0)",
"vkbottle (>=4.8.1,<5.0.0)",
"typing-extensions (>=4.15.0,<5.0.0)",
"msgspec (>=0.21.0,<0.22.0)",
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Typing :: Typed",
]
keywords = [
"types",
"vkbottle",
"vk api",
"vkontakte",
"bottle types",
"types bottle",
"vkbottle methods",
"vkbottle objects",
"bottle methods",
"bottle objects",
"vk methods",
"vk objects",
"framework types",
]
[dependency-groups]
dev = [
"ruff>=0.15.10",
"requests>=2.33.1",
"tqdm>=4.67.3",
"dataclass-factory>=2.16",
"jinja2>=3.1.6",
]
[tool.ruff]
line-length = 150
target-version = "py310"
[tool.ruff.lint]
select = [
"I",
"D",
"N",
"PLR",
"Q",
"COM",
"TC",
"YTT",
"SIM",
"RUF022",
]
ignore = [
"COM812",
"N805",
"N818",
"TC001",
"TC002",
"TC003",
"TC004",
"D100",
"D101",
"D102",
"D103",
"D104",
"D105",
"D107",
"D202",
"D203",
"D205",
"D209",
"D211",
"D213",
"D400",
"D401",
"D404",
"D415",
"PLR2004",
"PLR0911",
"PLR0912",
"PLR0913"
]
fixable = ["ALL"]
unfixable = ["ERA"]
exclude = [".venv", ".idea"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "F403"]
[tool.ruff.lint.flake8-quotes]
docstring-quotes = "double"
[tool.pyright]
exclude = [
".venv",
".idea",
".ruff_cache",
".pytest_cache",
]
typeCheckingMode = "basic"
pythonPlatform = "All"
pythonVersion = "3.10"
reportMissingImports = true
reportMissingTypeStubs = false
reportSelfClsParameterName = false