-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
52 lines (41 loc) · 1.09 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 = "aiotraq-monorepo"
version = "0.2.4"
description = "Async ready traQ Developper toolkit"
authors = ["toshi00"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/toshi-pono/aiotraq"
package-mode = false
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.api.dependencies]
openapi-python-client = "0.21.1"
[tool.poetry.group.dev.dependencies]
aiotraq = { path = "libs/aiotraq", develop = true }
aiotraq-message = { path = "libs/message", develop = true }
python-dotenv = "^1.0.1"
matplotlib = "^3.9.0"
aiotraq-bot = { path = "libs/bot", develop = true }
ruff = ">=0.2,<0.4"
mypy = "^1.10.0"
pillow = "^10.3.0"
numpy = "^1.26.4"
pandas = "^2.2.2"
[tool.mypy]
show_error_context = true
show_column_numbers = true
ignore_missing_imports = true
disallow_untyped_defs = true
no_implicit_optional = true
warn_return_any = true
check_untyped_defs = true
exclude = "libs/*"
[tool.ruff]
exclude = [".venv", "venv", "__pycache__", ".git"]
line-length = 120
indent-width = 4
[tool.ruff.format]
quote-style = "double"
[tool.ruff.lint.mccabe]
max-complexity = 10