-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (60 loc) · 1.64 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[project]
name = "d2rloader"
version = "1.1.0"
dependencies = [
"loguru>=0.7.3",
"psutil>=7.0.0",
"pydantic>=2.10.6",
"PySide6>=6.8.2.1",
"pywin32>=309; platform_system == 'Windows'",
"unidecode>=1.3.8",
]
requires-python = ">=3.12"
authors = [
{name = "sh4nks", email = ""},
]
maintainers = [
{name = "sh4nks", email = ""}
]
description = "Diablo 2 Resurrected Multi Loader"
readme = "README.md"
license = "MIT"
license-files = ["LICEN[CS]E.*"]
keywords = ["d2r", "qt", "diablo", "loader"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft",
"Operating System :: POSIX :: Linux",
"Topic :: Games/Entertainment"
]
[dependency-groups]
dev = [
"ruff>=0.9.10",
"pyinstaller>=6.12.0"
]
[project.urls]
Homepage = "https://github.com/sh4nks/d2rloader"
Documentation = "https://github.com/sh4nks/d2rloader"
Repository = "https://github.com/sh4nks/d2rloader"
"Bug Tracker" = "https://github.com/sh4nks/d2rloader/issues"
Changelog = "https://github.com/sh4nks/d2rloader/blob/master/CHANGELOG.md"
[project.scripts]
d2rloader = "d2rloader.app:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.mypy]
plugins = ['pydantic.mypy', 'keyof.mypy_plugin']
[tool.basedpyright]
include = ["d2rloader"]
exclude = ["**/node_modules", "**/__pycache__"]
defineConstant = { DEBUG = true }
reportIgnoreCommentWithoutRule = false
reportMissingImports = "error"
reportMissingTypeStubs = false
reportUnusedCallResult = false
reportAny = false
reportExplicitAny = false