-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (67 loc) · 2.16 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (67 loc) · 2.16 KB
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
[project]
name = "picows"
description = "Ultra-fast websocket client and server for asyncio"
authors = [{name = "Taras Kozlov", email = "tarasko.projects@gmail.com"}]
requires-python = '>=3.9'
readme = "README.md"
license-files = ["LICENSE"]
dynamic = ["version", "dependencies"]
keywords = ["websocket", "networking"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3 :: Only",
"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.14",
"Programming Language :: Cython",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: System :: Networking"
]
[build-system]
requires = ["setuptools >= 78.0", "wheel", "Cython >= 3.2"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/tarasko/picows"
Repository = "https://github.com/tarasko/picows"
Issues = "https://github.com/tarasko/picows/issues"
Documentation = "https://picows.readthedocs.io/en/latest"
[tool.setuptools.packages.find]
include = ["picows*"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
version = {attr = "picows.version.__version__"}
[project.optional-dependencies]
aiofastnet = []
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
testpaths = ["tests"]
[tool.mypy]
files = "picows"
ignore_missing_imports = true
strict = true
[[tool.mypy.overrides]]
module = ["picows.websockets.asyncio.connection"]
disable_error_code = ["untyped-decorator"]
[tool.coverage.run]
source = ["picows"]
branch = true
plugins = ["Cython.Coverage"]
core = "ctrace"
[tool.coverage.report]
show_missing = true
skip_covered = false
exclude_lines = [
"if TYPE_CHECKING:",
"raise NotImplementedError",
"raise MemoryError",
"assert False"
]