-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
48 lines (39 loc) · 1.51 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
[tool.poetry]
name = "crenata"
version = "0.1.0"
description = ""
authors = ["Ryu Juheon <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
"discord.py" = "^2.3.2"
neispy = "^5.0.2"
SQLAlchemy = "^2.0.15"
pandas = "^1.5.2"
matplotlib = "^3.6.3"
asyncpg = "^0.27.0"
[tool.poetry.group.style.dependencies]
black = "^22.8.0"
isort = "^5.10.1"
[tool.poetry.group.test.dependencies]
pytest = "^7.1.3"
pytest-cov = "^3.0.0"
pytest-asyncio = "^0.19.0"
[tool.poetry.group.type.dependencies]
pyright = "^1.1.344"
mypy = "^1.5.1"
[tool.isort]
src_paths = ["crenata", "tests"]
profile = "black"
[tool.pyright]
include = ["crenata"]
typeCheckingMode = "strict"
[tool.mypy]
disable_error_code = ["attr-defined", "union-attr", "name-defined", "used-before-def", "call-arg", "arg-type", "call-overload", "valid-type", "var-annotated", "override", "return", "empty-body", "return-value", "assignment", "method-assign", "type-var", "operator", "index", "list-item", "dict-item", "typeddict-item", "typeddict-unknown-key", "has-type", "import", "no-redef", "func-returns-value", "abstract", "type-abstract", "safe-super", "valid-newtype", "exit-return", "name-match", "literal-required", "no-overload-impl", "unused-coroutine", "top-level-await", "assert-type", "truthy-function", "str-format", "str-bytes-safe", "annotation-unchecked", "syntax", "misc"]
disallow_untyped_defs = true
[tool.black]
preview = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"