-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
48 lines (40 loc) · 1.18 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
[tool.poetry]
name = "cordy.py"
version = "0.2.dev0"
description = "A simple to use Discord API wrapper"
authors = ["BytesToBits"]
license = "MIT"
packages = [
{include = "cordy"}
]
readme = "README.md"
classifiers = [
"Development Status :: 1 - Planning",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
]
homepage = "https://github.com/BytesToBits/Cordy#readme"
repository = "https://github.com/BytesToBits/Cordy"
documentation = "https://cordy.rtfd.io"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/BytesToBits/Cordy/issues"
discord = "https://discord.gg/G4VhjVkGzu"
[tool.poetry.dependencies]
python = "^3.9"
Sphinx = {version = "^4.1.2", optional = true}
furo = {version = "^2021.7.5-beta.38", optional = true}
yarl = "^1.6.3"
aiohttp = "^3.7.4"
uprate = "^0.2.0"
[tool.poetry.dev-dependencies]
mypy = "^0.910"
[tool.poetry.extras]
docs = ["Sphinx", "furo"]
[tool.pyright]
include = ["cordy"]
exclude = ["docs", ".venv/", ".git", "**/__pycache__", ".mypy_cache"]
strictParameterNoneValue = false
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"