pythonasyncioeventletgeventlong-pollinglow-latencysocket-iosocketiosocketio-serverweb-serverwebsocket
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.3 KiB
60 lines
1.3 KiB
[project]
|
|
name = "python-socketio"
|
|
version = "5.12.2.dev0"
|
|
authors = [
|
|
{ name = "Miguel Grinberg", email = "[email protected]" },
|
|
]
|
|
description = "Socket.IO server and client for Python"
|
|
classifiers = [
|
|
"Environment :: Web Environment",
|
|
"Intended Audience :: Developers",
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"bidict >= 0.21.0",
|
|
"python-engineio >= 4.11.0",
|
|
]
|
|
|
|
[project.readme]
|
|
file = "README.md"
|
|
content-type = "text/markdown"
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/miguelgrinberg/python-socketio"
|
|
"Bug Tracker" = "https://github.com/miguelgrinberg/python-socketio/issues"
|
|
|
|
[project.optional-dependencies]
|
|
client = [
|
|
"requests >= 2.21.0",
|
|
"websocket-client >= 0.54.0",
|
|
]
|
|
asyncio_client = [
|
|
"aiohttp >= 3.4",
|
|
]
|
|
docs = [
|
|
"sphinx",
|
|
]
|
|
|
|
[tool.setuptools]
|
|
zip-safe = false
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.package-dir]
|
|
"" = "src"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = [
|
|
"src",
|
|
]
|
|
namespaces = false
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61.2"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
asyncio_default_fixture_loop_scope = "session"
|
|
|