-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
142 lines (132 loc) · 3.49 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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.4,<4"]
[project]
authors = [{name = "Joel Payne", email = "[email protected]"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dependencies = [
"aiohttp <4",
"yarl"
]
dynamic = ["version", "description"]
keywords = ["praw", "reddit", "api", "async", "asynchronous", "asyncpraw"]
license = {file = "LICENSE.txt"}
maintainers = [
{name = "Joel Payne", email = "[email protected]"}
]
name = "asyncprawcore"
readme = "README.rst"
requires-python = "~=3.8"
[project.optional-dependencies]
ci = ["coveralls"]
dev = [
"packaging",
"asyncprawcore[lint]",
"asyncprawcore[test]"
]
lint = [
"pre-commit",
"ruff ==0.1.*"
]
test = [
"mock ==4.*",
"pytest ==7.*",
"pytest-asyncio ==0.18.*",
"pytest-vcr ==1.*",
"urllib3 ==1.*",
"vcrpy ==4.2.1"
]
[project.urls]
"Issue Tracker" = "https://github.com/praw-dev/asyncprawcore/issues"
"Source Code" = "https://github.com/praw-dev/asyncprawcore"
[tool.black]
extend_exclude = '/(\.venv.*)/'
line-length = 88
[tool.isort]
profile = 'black'
skip_glob = '.venv*'
[tool.pytest.ini_options]
asyncio_mode = "auto"
filterwarnings = "ignore::DeprecationWarning"
testpaths = "tests"
[tool.ruff]
target-version = "py38"
include = [
"asyncprawcore/*.py"
]
[tool.ruff.lint]
ignore = [
"A002", # shadowing built-in
"ANN101", # missing type annotation for self in method
"ANN102", # missing type annotation for cls in classmethod
"ANN202", # missing return type for private method
"ANN401", # typing.Any usage
"ASYNC109", # Async function definition with a `timeout` parameter
"D203", # 1 blank line required before class docstring
"D213", # Multi-line docstring summary should start at the second line
"E501", # line-length
"PLR0913", # too many arguments
"PLR2004", # Magic value used in comparison,
"S101" # use of assert
]
select = [
"A", # flake8-builtins
"ANN", # flake8-annotations
"ASYNC", # flake8-async
"ARG", # flake8-unused-arguments
"B", # flake8-bugbear
"BLE", # flake8-blind-except
"C4", # flake8-comprehensions
"D", # pydocstyle
"DTZ", # flake8-datetimez
"E", # pycodestyle errors
"EM", # flake8-errmsg
"ERA", # eradicate
"EXE", # flake8-executable
"F", # pyflakes
"FA", # flake8-future-annotations
"FIX", # flake8-fix me
"FLY", # flynt
"G", # flake8-logging-format
"I", # isort
"INP", # flake8-no-pep420
"ISC", # flake8-implicit-str-concat
"N", # pep8-naming
"PIE", # flake8-pie
"PGH", # pygrep-hooks
"PL", # Pylint
"PT", # flake8-pytest-style
"PTH", # flake8-use-pathlib
"PYI", # flake8-pyi
"Q", # flake8-quotes
"RET", # flake8-return
"RSE", # flake8-raise
"S", # bandit
"SIM", # flake8-simplify
"T10", # flake8-debugger
"T20", # flake8-print
"TCH", # flake8-type-checking
"TD", # flake8-todos
"W", # pycodestyle warnings
"UP" # pyupgrade
]
[tool.ruff.lint.flake8-annotations]
allow-star-arg-any = true
mypy-init-return = true
suppress-dummy-args = true
suppress-none-returning = true
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]