-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
78 lines (64 loc) · 1.84 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 >= 72.2.0", "wheel >= 0.44.0"]
build-backend = "setuptools.build_meta"
[project]
name = "rohrpost"
version = "4.1.0"
authors = [
{name = "Tobias Kunze", email = "[email protected]"},
]
description = "rohrpost WebSocket protocol for ASGI"
requires-python = ">=3.8"
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet :: WWW/HTTP",
]
dependencies = [
"channels >= 4.0",
]
dynamic = ["readme"]
[project.urls]
Documentation = "https://rohrpost.readthedocs.io/en/stable/"
Changelog = "https://github.com/axsemantics/rohrpost/blob/main/CHANGELOG.rst"
Source = "https://github.com/axsemantics/rohrpost"
Tracker = "https://github.com/axsemantics/rohrpost/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
readme = {file = ["README.rst"], content-type = "text/x-rst"}
[tool.setuptools.packages.find]
where = ["src"]
namespaces = true
[tool.check-manifest]
ignore = [
".flake8",
"CHANGELOG.rst",
"check_version.sh",
"mypy.ini",
"doc/*",
"requirements/*",
"tests/*",
]
[tool.isort]
balanced_wrapping = true
profile = "black"
[tool.pylint."messages control"]
disable = [
"duplicate-code",
"missing-docstring",
]
[tool.pytest.ini_options]
pythonpath = ["src"]