-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 1.09 KB
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
[project]
name = "mikumod-mirror"
version = "1.1.0"
description = "Mirrored copy of MikuMod source code (some code comments removed)."
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"aiohttp==3.12.14",
"anyio==4.3.0",
"bs4>=0.0.2",
"discord-py==2.5.2",
"diskcache==5.6.3",
"odfpy>=1.4.1",
"openpyxl>=3.1.5",
"pandas==2.3.0",
"pytest==8.4.1",
"pytest-asyncio==1.0.0",
"python-dotenv==1.1.1",
"pytz==2024.1",
"requests==2.32.4",
"tabulate==0.9.0",
"vdbpy",
]
[tool.uv.sources]
vdbpy = { git = "https://github.com/Shiroizu/VDBpy" }
[tool.ruff]
target-version = "py313"
[tool.ruff.lint]
select = ["ALL"]
ignore = ["D107","D203","D213","D100","PGH003","N814","ANN201","D101","D103","FBT002","ANN","PTH","G004","COM812","TRY300","C901","DTZ006","PLR0915","SIM102","TD","FIX002","PLR0912","PLW1510","S603","ERA001","FA102","DTZ005","DTZ007","PERF203","PERF401","TRY002","TRY003","EM101","D417","D406","D407","INP001","PLR0913","D401","EM102","S311","PLR2004","FBT001"]
[tool.pyright]
typeCheckingMode = "strict"
reportMissingTypeStubs = false