-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
71 lines (68 loc) · 1.79 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
[build-system]
requires = [
"setuptools >= 61.0.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "aioscgi"
version = "2.3.0"
dependencies = [
"sioscgi >= 5.0, < 6.0",
]
requires-python = ">= 3.11"
scripts.aioscgi = "aioscgi.main:main"
authors = [
{ name = "Christopher Head" },
]
description = "An ASGI server that speaks SCGI."
readme = "README.rst"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
urls.Repository = "https://gitlab.com/Hawk777/aioscgi"
entry-points."aioscgi.io".asyncio = "aioscgi.asyncio"
[tool.pylint.messages_control]
enable = [
"deprecated-pragma",
"useless-suppression",
"use-symbolic-message-instead",
]
disable = [
"line-too-long",
"no-else-raise",
"no-else-return",
"too-few-public-methods",
"too-many-arguments",
"too-many-branches",
"too-many-instance-attributes",
"too-many-locals",
"too-many-nested-blocks",
"too-many-return-statements",
"too-many-statements",
]
[tool.ruff]
allowed-confusables = ["’"]
ignore = [
"ANN401", # any-type
"C901", # complex-structure
"COM812", # missing-trailing-comma
"D203", # one-blank-line-before-class
"D212", # multi-line-summary-first-line
"FBT001", # boolean-type-hint-positional-argument
"PLR09", # too-many-<foo>
"PLR2004", # magic-value-comparison
"PT", # pytest-related stuff
"S101", # assert
"S110", # try-except-pass
"TCH001", # typing-only-first-party-import
"TCH003", # typing-only-standard-library-import
]
select = ["ALL"]
src = ["src"]
target-version = "py311"