-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (44 loc) · 1.29 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
[tool.poetry]
name = "misspy"
version = "0.0.0"
description = "Fast, asynchronous Misskey API framework"
authors = ["sonyakun <[email protected]>"]
readme = "README.md"
license = "MIT"
homepage = "https://rewrite.misspy.xyz/"
repository = "https://go.misspy.xyz/rewrite"
documentation = "https://rewrite.misspy.xyz/docs/"
keywords = ["misskey", "misskey-api", "misskey-bot", "misspy"]
classifiers = [
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules"
]
packages = [
{ include = "misspy" }
]
[tool.poetry-version-plugin]
source = "git-tag"
[tool.poetry.dependencies]
python = "^3.9"
aiohttp = "^3.9.1"
requests = "^2.31.0"
websockets = "^12.0"
tenacity = "^8.2.3"
pydantic = "^2.6.3"
mitypes = "^0.1.0"
aiodns = { version="^3.1.1", optional = true }
brotlicffi = { version="^1.1.0.0", optional = true }
brotli = { version="^1.1.0", optional = true }
charset-normalizer = { version="^3.3.2", optional = true }
orjson = { version = "^3.9.15"}
python-dateutil = "^2.9.0.post0"
[tool.poetry.extras]
speed = ["brotlicffi", "Brotli", "charset-normalizer", "aiodns"]
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
ruff = "*"
mypy = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"