forked from robertmrk/aiocometd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
31 lines (29 loc) · 1009 Bytes
/
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
[project]
name = "aiocometd-noloop"
description = "A CometD client, updated for Python 3.10"
readme = "README.md"
version = "0.4.9"
authors = [
{ name = "Robert Marki", email = "gsmiko@gmail.com" },
{ name = "Kieran Lock", email = "kieran.lock@outlook.com" }
]
keywords = ["python", "streaming", "comet", "aiohttp", "asyncio", "cometd", "bayeux", "push"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Developers"
]
requires-python = ">=3.10"
license = {file = "LICENSE"}
dependencies = [
"aiohttp>=3.1,<4.0",
'importlib-metadata; python_version<"3.10"',
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
GitHub = "https://github.com/Kieran-Lock/aiocometd-noloop"
Documentation = "https://aiocometd.readthedocs.io/en/latest/"
License = "https://github.com/Kieran-Lock/aiocometd-noloop/blob/main/LICENSE"