This repository has been archived by the owner on Aug 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
67 lines (56 loc) · 1.88 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
[tool.poetry]
name = "vanilla-installer"
version = "0.2.2"
description = "An installer of Fabulously Optimized for the vanilla launcher."
authors = [
"osfanbuff63 <[email protected]>",
"nsde <[email protected]>",
"Kichura <blobfox.coffee/@Kichura>"
]
documentation = "https://fabulously-optimized.gitbook.io/vanilla-installer"
homepage = "https://fabulously-optimized.gitbook.io/vanilla-installer"
repository = "https://github.com/Fabulously-Optimized/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.31.0"
tomli = "^2.0.1"
darkdetect = {version = "^0.8.0", optional = true}
minecraft-launcher-lib = "^5.3"
pyside6 = {version = "^6.5.1", optional = true}
asyncclick = "^8.1.3.4"
anyio = "^3.7.0" # asyncclick seems to bug without anyio, despite being a dep
tomlkit = "^0.11.8"
[tool.poetry.group.dev.dependencies]
pylint = "^2.17.4"
black = "^23.3.0"
isort = "^5.12.0"
[tool.poetry.group.ci.dependencies]
flake8 = "^6.0.0"
[tool.poetry.group.compile.dependencies]
nuitka = "^1.5.8"
ordered-set = "^4.1.0"
zstandard = "^0.21.0"
imageio = "^2.30.0"
# pyproject-appimage = {version = "^2.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/Fabulously-Optimized/vanilla-installer/issues"
[tool.poetry.extras]
gui = ["pyside6", "darkdetect"]
[tool.poetry_bumpversion.file."vanilla_installer/__init__.py"]
# [tool.pyproject-appimage]
# script = "vanilla-installer"
# output = "VanillaInstaller-v0.2.2.AppImage"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"