This repository has been archived by the owner on Aug 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
59 lines (52 loc) · 1.57 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
[tool.poetry]
name = "nextcord"
version = "3.0.0"
description = "A modern, async, and feature-full wrapper for the Discord API, made in Python."
authors = ["vcokltfre <vcokltfre@gmail.com>", "tag-epic <epic@duck.com>"]
license = "MIT"
repository = "https://github.com/nextcord/nextcord-v3"
classifiers = [
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Communications :: Chat",
"Typing :: Typed"
]
packages = [
{ include = "nextcord" }
]
[tool.poetry.dependencies]
python = "^3.9"
orjson = {version = ">=3.5.4", optional = true}
aiodns = {version = ">=1.1", optional = true}
Brotli = {version = "^1.0.9", optional = true}
cchardet = {version = "^2.1.7", optional = true}
aiohttp = ">=3.6.0,<4.0.0"
[tool.poetry.dev-dependencies]
isort = "^5.10.1"
black = "^21.12b0"
pytest = "^6.2.5"
taskipy = "^1.9.0"
mypy = "^0.931"
types-orjson = "^3.6.2"
Sphinx = "^4.4.0"
sphinx-copybutton = "^0.4.0"
furo = "^2022.1.2"
[tool.poetry.extras]
speed = ["orjson", "aiodns", "Brotli", "cchardet"]
[tool.isort]
profile = "black"
[tool.black]
line-length = 120
target-version = ["py39"]
[tool.taskipy.tasks]
lint = "black . && isort --profile black ."
mypy = "mypy nextcord --python-version 3.9 --strict"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"