-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 1019 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 1019 Bytes
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
[project]
name = "thunderstore"
version = "0.2.1"
description = "thunderstore.io modpage support for Mod Organizer 2"
authors = [{ name = "Zash", email = "zash@fantasymail.de" }]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.12,<4.0"
dependencies = []
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
types-requests = "^2.32.4.20250913"
ruff = "^0.13.0"
poethepoet = "^0.37.0"
mypy = "^1.18.1"
pyright = "^1.1.405"
mobase-stubs = "^2.5.2"
pyqt6 = "^6.7.0"
[tool.poe.tasks]
format-imports = "ruff check --select I . --fix"
format-ruff = "ruff format ."
format.sequence = ["format-imports", "format-ruff"]
lint-ruff = "ruff check --extend-select I ."
lint-ruff-format = "ruff format --check ."
lint-pyright = "pyright ."
lint-mypy = "mypy ."
lint.sequence = ["lint-ruff", "lint-ruff-format", "lint-pyright", "lint-mypy"]
lint.ignore_fail = "return_non_zero"
[tool.pyright]
reportMissingModuleSource = false