-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
51 lines (43 loc) · 1.02 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
[tool.poetry]
name = "wyvern"
version = "0.2.0"
description = "A flexible and easy to use Discord API wrapper for python 🚀."
authors = [ "sarthhh", "FallenDeity"]
license = "MIT License"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
aiohttp = "^3.8.1"
attrs = "^22.1.0"
colorama = "^0.4.6"
[tool.poetry.dev-dependencies]
pyright = "^1.1.282"
ruff = "^0.0.254"
isort = "^5.10.1"
black = "^23.1.0"
pre-commit = "^2.20.0"
sphinx = "^6.1.3"
typing-extensions = "^4.4.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
[tool.pyright]
include = ["wyvern"]
pythonVersion = "3.8"
typeCheckingMode = "strict"
reportPrivateUsage = false
reportImportCycles = false
reportIncompatibleMethodOverride = false
[tool.black]
line-length = 120
target-version = ['py38']
[tool.isort]
line_length = 120
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
src_paths = ["wyvern"]