-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (58 loc) · 1.99 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "discord-ext-paginators"
version = "0.2.0a0"
description = "A discord.py extension for my collection of paginators."
license = "MIT"
authors = ["Aaron Hennessey (Axelancerr) <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/Axelancerr/discord-ext-paginators"
repository = "https://github.com/Axelancerr/discord-ext-paginators"
documentation = "https://discord-ext-paginators.readthedocs.io/en/latest/"
keywords = [
"discord", "discord.ext", "discord.py",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
packages = [
{ include = "discord/ext/paginators" },
{ include = "discord/ext/paginators/**/*.py" },
{ include = "discord/ext/paginators/**/*.typed" },
]
include = [
"CHANGELOG.md", "LICENSE"
]
[tool.poetry.dependencies]
python = "^3.11.0"
aiohttp = "^3.8.0"
discord-py = "^2.3.0"
typing-extensions = "^4.6.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "^7.0.0"
sphinxcontrib-trio = "^1.1.0"
sphinx-copybutton = "^0.5.0"
sphinx-inline-tabs = "^2023.4.0"
furo = "^2023.5.0"
[tool.poetry.urls]
"Issue Tracker" = "https://github.com/Axelancerr/discord-ext-paginators/issues"
"Discord" = "https://discord.com/invite/w9f6NkQbde"
[tool.pyright]
include = ["discord/ext/paginators"]
pythonVersion = "3.11"
typeCheckingMode = "strict"
useLibraryCodeForTypes = true