2023-05-24 23:51:08 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[tool.setuptools]
|
|
|
|
packages = [
|
|
|
|
"legendary",
|
|
|
|
"legendary.api",
|
|
|
|
"legendary.downloader",
|
|
|
|
"legendary.downloader.mp",
|
|
|
|
"legendary.lfs",
|
|
|
|
"legendary.models",
|
|
|
|
"legendary.utils",
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.setuptools.dynamic]
|
|
|
|
version = {attr = "legendary.__version__"}
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "legendary"
|
|
|
|
description = "Free and open-source replacement for the Epic Games Launcher application"
|
|
|
|
readme = "README.md"
|
|
|
|
requires-python = ">=3.9"
|
|
|
|
license = {file = "LICENSE"}
|
|
|
|
authors = [
|
|
|
|
{name = "Rodney", email = "rodney@rodney.io" }
|
|
|
|
]
|
|
|
|
classifiers = [
|
|
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Operating System :: POSIX :: Linux",
|
|
|
|
"Operating System :: Microsoft",
|
|
|
|
"Intended Audience :: End Users/Desktop",
|
|
|
|
"Topic :: Games/Entertainment",
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
]
|
|
|
|
dependencies = [
|
2023-05-25 15:29:53 +00:00
|
|
|
"requests ~= 2.31"
|
2023-05-24 23:51:08 +00:00
|
|
|
]
|
|
|
|
dynamic = ["version"]
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
2023-05-25 15:29:53 +00:00
|
|
|
webview = ["pywebview ~= 4.1"]
|
|
|
|
webview_gtk = ["pywebview ~= 4.1", "PyGObject ~= 3.44"]
|
2023-05-24 23:51:08 +00:00
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
"Homepage" = "https://github.com/derrod/legendary"
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
legendary = "legendary.cli:main"
|