legendary/pyproject.toml
2026-04-16 11:16:56 +02:00

63 lines
1.4 KiB
TOML

[build-system]
requires = ["uv_build>=0.11.4,<0.12"]
build-backend = "uv_build"
[project]
name = "legendary-gl"
version = "0.20.35"
dependencies = [
"requests",
"filelock",
"pycryptodomex",
]
requires-python = ">= 3.10"
authors = [
{name = "Rodney", email = "rodney@rodney.io"}
]
description = "Free and open-source replacement for the Epic Games Launcher application"
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft",
"Intended Audience :: End Users/Desktop",
"Topic :: Games/Entertainment",
"Development Status :: 4 - Beta",
]
[project.optional-dependencies]
webview = ["pywebview>=3.4"]
webview_gtk = ["pywebview>=3.4", "PyGObject"]
pyinstaller_build = ["pyinstaller"]
[project.scripts]
legendary = "legendary.cli:main"
[project.urls]
source = "https://github.com/derrod/legendary"
[dependency-groups]
dev = [
"ruff>=0.15.10",
]
[tool.uv]
required-version = ">=0.11.0"
[tool.uv.build-backend]
module-name = "legendary"
module-root = ""
[tool.ruff]
extend-exclude = ["zipapp_main.py"]
[tool.ruff.lint]
select = [ "E", "F", "UP", "B", "SIM", "I" ]
ignore = [ "E501", "UP015", "SIM102", "SIM115" ]
[tool.ruff.format]
quote-style = "single"