-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
35 lines (31 loc) · 1.03 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "wsdatautil"
authors = [
{name = "Adrian F. Hoefflin", email = "srccircumflex@outlook.com"},
]
description = "The WsDataUtil is a lightweight, highly compatible Python module to process WebSocket data."
requires-python = ">=3.9"
readme = {file = "README.rst", content-type = "text/x-rst"}
keywords = [
"ws", "wss", "websocket", "websocket protocol", "python c extension",
"websocket encode", "websocket parser", "websocket frame parser", "websocket frame"
]
license = { text = "MIT" }
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: C"
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/srccircumflex/wsdatautil"
[tool.setuptools.dynamic]
version = {attr = "wsdatautil.__version__"}
[tool.cibuildwheel.macos]
archs = ["x86_64", "universal2", "arm64"]
[tool.cibuildwheel.linux]
archs = ["auto", "aarch64"]