-
Notifications
You must be signed in to change notification settings - Fork 35
/
pyproject.toml
executable file
·69 lines (59 loc) · 1.6 KB
/
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
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
[project]
name = "revolt.py"
dynamic = ["version"]
description = "Python wrapper for the revolt.chat API"
requires-python = ">=3.9"
license = "MIT"
readme = "README.md"
keywords = ["wrapper", "async", "api", "websockets", "http"]
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",
]
dependencies = [
"aiohttp==3.10.*",
"ulid-py==1.1.*",
"aenum==3.1.*",
"typing_extensions>=4.4.0"
]
[project.optional-dependencies]
speedups = [
"ujson==5.1.*",
"msgpack==1.0.*"
]
docs = [
"Sphinx==5.2.*",
"sphinx-nameko-theme==0.0.*",
"sphinx-toolbox==3.2.*",
"setuptools==65.4.*"
]
[project.urls]
Homepage = "https://github.com/revoltchat/revolt.py"
Documentation = "https://revoltpy.readthedocs.io/en/latest/"
"Source Code" = "https://github.com/revoltchat/revolt.py"
"Bug Tracker" = "https://github.com/revoltchat/revolt.py/issues"
[[project.authors]]
name = "Zomatree"
email = "[email protected]"
[tool.hatch.version]
path = "revolt/__init__.py"
[tool.hatch.build]
only-packages = true
include = ["revolt/**/*"]
[tool.pyright]
reportPrivateUsage = false
reportImportCycles = false
reportIncompatibleMethodOverride = false
typeCheckingMode = "strict"
[tool.hatch.build.targets.sdist]
strict-naming = false
[tool.hatch.build.targets.wheel]
strict-naming = false
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"