-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (37 loc) · 1.02 KB
/
pyproject.toml
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
[project]
name = "vkmini"
version = "5.199.0a1"
authors = [
{ name="Elchin Sarkarov", email="elchin751@gmail.com" },
]
description = "VK API requests library"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["typing-extensions", "aiohttp>=3.6.2"]
[project.urls]
"Homepage" = "https://github.com/Elchinchel/vkmini"
"Bug Tracker" = "https://github.com/Elchinchel/vkmini/issues"
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
# [tool.setuptools.packages.find]
# include = ["communica*"]
# namespaces=false
[tool.pyright]
typeCheckingMode = "basic"
reportIncompatibleMethodOverride = "warning"
reportUnnecessaryTypeIgnoreComments = "warning"
exclude = ["./build/"]
[tool.ruff]
line-length = 85
[tool.ruff.lint.isort]
length-sort = true
lines-after-imports = 2
known-third-party = []
[tool.ruff.format]
quote-style = "single"