forked from jupyter-server/pycrdt-websocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
82 lines (76 loc) · 1.98 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pycrdt-websocket"
dynamic = ["version"]
description = "WebSocket connector for pycrdt"
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.8"
authors = [
{ name = "David Brochart", email = "[email protected]" },
]
keywords = [
"websocket",
"yjs",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"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 = [
"anyio >=3.6.2,<5",
"sqlite-anyio >=0.2.3,<0.3.0",
"pycrdt >=0.10.1,<0.11.0",
]
[project.optional-dependencies]
test = [
"mypy !=1.10.0,!=1.10.1", # see https://github.com/python/mypy/issues/17166
"pre-commit",
"pytest",
"pytest-timeout",
"httpx-ws >=0.5.2",
"hypercorn >=0.16.0",
"trio >=0.25.0",
"sniffio",
]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocstrings-python",
]
django = [
"channels",
]
[project.urls]
Homepage = "https://github.com/jupyter-server/pycrdt-websocket"
Source = "https://github.com/jupyter-server/pycrdt-websocket"
Issues = "https://github.com/jupyter-server/pycrdt-websocket/issues"
Pypi = "https://pypi.org/project/pycrdt-websocket"
[tool.hatch.version]
path = "pycrdt_websocket/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/pycrdt_websocket",
"/tests",
]
[tool.ruff]
line-length = 99
lint.select = [
"ASYNC", # flake8-async
"E", "F", "W", # default Flake8
"G", # flake8-logging-format
"I", # isort
"ISC", # flake8-implicit-str-concat
"PGH", # pygrep-hooks
"RUF100", # unused noqa (yesqa)
"UP", # pyupgrade
]