-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
67 lines (61 loc) · 2.17 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
[tool.poetry]
name = "misspy"
version = "0.0.0"
description = "High-performance Misskey API framework"
authors = ["sonyakun <contact@sonyakun.xyz>"]
packages = [{include = "misspy"}]
readme = "README.md"
homepage = "https://misspy.xyz/"
documentation = "https://docs.misspy.xyz/"
repository = "https://github.com/misspy-development/misspy"
keywords = [
"misskey",
"misskey-api",
"misskey-bot"
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poe.tasks]
build = "poetry build"
publish = "poetry publish"
[tool.poetry.urls]
Changelog = "https://misspy.xyz/History/"
[tool.poetry.dependencies]
python = "^3.8"
websockets = ">=11.0.3,<13.0.0"
attrdictionary = "^1.0.0"
charset-normalizer = { version = "^3.3.1", optional = true }
poethepoet = { version = ">=0.22.1,<0.26.0", optional = true }
requests = "^2.31.0"
httpx = "^0.25.0"
aiohttp = "^3.9.0"
aiodns = "^3.1.1"
mkdocs = { version = "*", optional = true }
mkdocs-material = { version = "*", optional = true }
mkdocs-awesome-pages-plugin = { version = "*", optional = true }
mkdocstrings = { version = "*", optional = true }
mkdocstrings-python = { version = "*", optional = true }
mkdocs-git-revision-date-localized-plugin = { version = "*", optional= true}
orjson = [
{ version = "3.9.15", optional = true, platform = 'windows'},
{ version = "^3.9.15", optional = true, platform = 'linux'},
{ version = "^3.9.15", optional = true, platform = 'darwin'}
]
[tool.poetry-version-plugin]
source = "git-tag"
[tool.poetry.extras]
mkdocs = ["mkdocs", "mkdocs-material", "mkdocs-awesome-pages-plugin", "mkdocstrings", "mkdocstrings-python", "mkdocs-git-revision-date-localized-plugin"]
speed = ["charset-normalizer", "orjson"]
dev = ["poethepoet", "black"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"