forked from Fabulously-Optimized/vanilla-installer-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
68 lines (55 loc) · 1.81 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
67
68
[tool.poetry]
name = "vanilla-installer"
version = "0.2.0"
description = "An installer of Fabulously Optimized for the vanilla launcher."
authors = [
"osfanbuff63 <[email protected]>",
"nsde <[email protected]>"
]
documentation = "https://fabulously-optimized.gitbook.io/vanilla-installer"
homepage = "https://github.com/HB-Modding-Crew/vanilla-installer"
repository = "https://github.com/HB-Modding-Crew/vanilla-installer"
license = "MIT"
readme = "README.md"
packages = [{include = "vanilla_installer"}]
include = [
"./vanilla_installer/assets/**"
]
[tool.poetry.dependencies]
python = ">=3.8.1,<3.12"
requests = "^2.28.2"
tomli = "^2.0.1"
darkdetect = "^0.8.0"
minecraft-launcher-lib = "^5.3"
pyside6 = {version = "^6.4.2", optional = true}
asyncclick = "^8.1.3.4"
anyio = "^3.6.2" # asyncclick seems to bug without anyio, despite being a dep
tomlkit = "^0.11.6"
[tool.poetry.group.dev.dependencies]
pylint = "^2.16.1"
black = "^22.10.0"
isort = "^5.11.4"
[tool.poetry.group.ci.dependencies]
flake8 = "^6.0.0"
[tool.poetry.group.compile.dependencies]
nuitka = {version = "^1.4", python = "<=3.10"}
ordered-set = "^4.1.0"
zstandard = "^0.19.0"
imageio = "^2.25.0"
pyproject-appimage = {version = "^1.0", python = ">=3.9,<3.12"}
[tool.poetry.scripts]
vanilla-installer = {callable = "vanilla_installer:cli.vanilla_installer"}
vanilla-installer-gui = {callable = "vanilla_installer:gui.run", extras = ["gui"]}
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/HB-Modding-Crew/vanilla-installer/issues"
[tool.poetry.extras]
gui = ["pyside6"]
[tool.poetry_bumpversion.file."vanilla_installer/__init__.py"]
[tool.pyproject-appimage]
script = "vanilla-installer"
output = "VanillaInstaller-v0.2.0.AppImage"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"