-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (36 loc) · 886 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
40
41
42
43
[tool.poetry]
name = "Resist"
version = "0.1.0"
description = "Strongly typed revolt API wrapper."
authors = ["andy <andy.development@protonmail.com>"]
license = "MIT"
readme = "README.rst"
keywords = ["revolt"]
homepage = "https://github.com/an-dyy/Resist"
packages = [{include="resist"}]
[tool.poetry.dependencies]
python = "^3.9"
attrs = "^21.4.0"
aiohttp = "^3.8.1"
typing-extensions = "^4.1.1"
[tool.poetry.dev-dependencies]
black = "^22.1.0"
flake8 = "^4.0.1"
pytest = "^6.2.5"
pytest-asyncio = "^0.17.0"
pytest-cov = "^3.0.0"
pre-commit = "^2.17.0"
isort = "^5.10.1"
[tool.black]
line-length = 90
[tool.isort]
profile = "black"
[tool.pyright]
typeCheckingMode = "strict"
reportImportCycles = false
reportUnnecessaryIsInstance = false
reportPrivateUsage = false
ignore = ["tests/"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"