-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (44 loc) · 1.05 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
[tool.poetry]
name = "rin"
version = "0.1.2"
description = "A successor to the Lefi project"
authors = ["an-dyy <andy.development@protonmail.com>"]
license = "MIT"
readme = "README.md"
keywords = ["discord", "discord-api"]
homepage = "https://github.com/an-dyy/Rin"
packages = [{include = "rin"}]
[tool.poetry.dependencies]
python = "^3.9"
aiohttp = "^3.8.1"
typing-extensions = "^4.0.1"
python-magic = "^0.4.25"
[tool.poetry.dev-dependencies]
mypy = "^0.931"
black = "^21.12b0"
flake8 = "^4.0.1"
pre-commit = "^2.16.0"
isort = "^5.10.1"
pytest = "^6.2.5"
pytest-asyncio = "^0.17.0"
Sphinx = "^4.3.2"
furo = "^2022.1.2"
pytest-cov = "^3.0.0"
[tool.black]
line-length = 90
[tool.mypy]
ignore_missing_imports = true
strict = true
implicit_reexport = true
[tool.pyright]
typeCheckingMode = "strict"
reportImportCycles = false
reportPrivateUsage = false
reportUnnecessaryIsInstance = false
reportIncompatibleMethodOverride = false
ignore = ["examples/"]
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"