-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (71 loc) · 2.07 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
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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "aiovkcom"
version = "1.0.0"
requires-python = ">= 3.7"
dependencies = ["httpx"]
authors = [{name = "Konstantin Togoi", email = "konstantin.togoi@gmail.com"}]
description = "Python vk.com API wrapper"
license = {file = "LICENSE"}
readme = "README.rst"
keywords = ["vk", "vk api"]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Home = "https://pypi.org/project/aiovkcom"
Documentation = "https://konstantintogoi.github.io/aiovkcom"
Repository = "https://github.com/konstantintogoi/aiovkcom"
[tool.ruff]
ignore = []
fixable = ["I", "W"]
select = [
"A", # flake8-builtins
"B", # flake8-bugbear
"D", # pydocstyle
"E", # pycodestyle errors
"F", # Pyflakes
"I", # isort
"N", # pep8-naming
"W", # pycodestyle warnings
"C4", # flake8-comprehensions
"C90", # mccabe
"COM", # flake8-commas
]
extend-select = [
"D", # pydocstyle
]
extend-ignore = [
# Google docstring conventions
"D203", # No blank lines before class docstring
"D213", # Multi-line docstrings should start at the first line
"D406", # Allow colons after "Args", "Returns"
"D407", # Allow "Args", "Returns"
]
exclude = [
"__pypackages__",
"__pycache__",
".mypy_cache",
".ruff_cache",
".git",
]
line-length = 80
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
# Assume Python 3.9.
target-version = "py39"