mirror of
https://github.com/stoatchat/python-client-sdk.git
synced 2026-07-22 02:25:22 -04:00
47 lines
1.4 KiB
TOML
Executable File
47 lines
1.4 KiB
TOML
Executable File
[tool.poetry]
|
|
name = "revolt.py"
|
|
version = "0.1.7"
|
|
description = "Python wrapper for the revolt.chat API"
|
|
authors = ["Zomatee <me@zomatree.live>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
homepage = "https://github.com/revoltchat/revolt.py"
|
|
documentation = "https://revoltpy.readthedocs.io/en/latest/"
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
]
|
|
keywords = ["wrapper", "async", "api", "websockets", "http"]
|
|
packages = [
|
|
{ include = "revolt" }
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
aiohttp = "3.7.4"
|
|
ulid-py = "1.1.0"
|
|
aenum = "3.1.8"
|
|
typing-extensions = "4.1.1"
|
|
ujson = { version = "5.1.0", optional = true }
|
|
msgpack = { version = "", optional = true }
|
|
Sphinx = { version = "4.3.2", optional = true }
|
|
sphinx-nameko-theme = { version = "0.0.3", optional = true }
|
|
sphinx-toolbox = { version = "2.15.2", optional = true }
|
|
|
|
[tool.poetry.extras]
|
|
speedups = ["ujson", "aiohttp[speedups]", "msgpack"]
|
|
docs = ["Sphinx", "sphinx-nameko-theme", "sphinx-toolbox"]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.urls]
|
|
"Bug Tracker" = "https://github.com/revoltchat/revolt.py/issues"
|
|
Source = "https://github.com/revoltchat/revolt.py/"
|