-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (31 loc) · 873 Bytes
/
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
[tool.poetry]
name = "discord-remote-auth"
version = "1.0.0"
description = "Wrapper around discord's remote auth gateway"
authors = ["teaishealthy <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
cryptography = "^37.0.4"
aiohttp = "^3.8.1"
pre-commit = "^2.20.0"
sphinxcontrib-trio = { version = "^1.1.2", optional = true}
furo = { version = "^2022.6.21", optional = true}
[tool.poetry.dev-dependencies]
pyright = "^1.1.263"
black = "^22.6.0"
isort = "^5.10.1"
[tool.poetry.extras]
docs = ["furo", "sphinxcontrib-trio"]
[tool.isort]
profile = "black"
src_paths = "discord_remote_auth"
[tool.pyright]
typeCheckingMode = "strict"
reportUnnecessaryTypeIgnoreComment = true
[tool.black]
line-length = 88
include = "discord_remote_auth"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"