forked from JuneStepp/OneLauncher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (44 loc) · 1.37 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
[tool.poetry]
name = "OneLauncher"
version = "1.2.6"
description = "The OneLauncher for LOTRO and DDO"
authors = ["June Stepp <contact@junestepp.me>"]
license = "GPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/JuneStepp/OneLauncher"
packages = [{ include = "onelauncher", from = "src" }]
keywords = ["LOTRO", "DDO", "launcher", "addon-manager", "custom-launcher"]
classifiers = [
"Development Status :: 6 - Mature",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Topic :: Games/Entertainment :: Role-Playing",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
PySide6 = "^6.0.2,!=6.2.0"
keyring = "^23.0.1"
cryptography = "^3.4.7"
SecretStorage = { version = "^3.3.1", markers = "sys_platform == 'linux'" }
dbus-python = { version = "^1.2.16", markers = "sys_platform == 'linux'" }
defusedxml = "^0.7.1"
vkbeautify = "^0.3.0"
rtoml = "^0.7.0"
platformdirs = "^2.2.0"
bidict = "^0.21.2"
[tool.poetry.dev-dependencies]
bandit = "^1.7.0"
Nuitka = "^0.6.14"
autopep8 = "^1.5.7"
pytest = "^6.2.4"
isort = "^5.9.3"
mypy = "^0.910"
[tool.poetry.scripts]
onelauncher = "onelauncher.start_ui:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.autopep8]
aggressive = 3