-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
77 lines (74 loc) · 2.42 KB
/
setup.py
File metadata and controls
77 lines (74 loc) · 2.42 KB
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
69
70
71
72
73
74
75
76
77
from setuptools import setup, find_packages
__author__ = "Jo0x01"
__pkg_name__ = "PyRiotDL"
__version__ = "1.0.0"
__desc__ = (
"PyRiotDL is a Python library and CLI tool for downloading and inspecting "
"Riot Games files using RMAN manifest-based patching. Supports League of Legends, "
"VALORANT, TFT, Legends of Runeterra, 2XKO, Wild Rift, and the Riot Client."
)
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name=__pkg_name__,
version=__version__,
packages=find_packages(),
license="GPL-3.0-only",
description=__desc__,
author=__author__,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Jo0x01/PyRiotDL",
project_urls={
"Bug Tracker": "https://github.com/Jo0x01/PyRiotDL/issues",
"Source Code": "https://github.com/Jo0x01/PyRiotDL",
},
install_requires=[
"xxhash>=3.4.0",
"requests>=2.31.0",
"zstandard>=0.21.0",
"certifi>=2024.1.1",
"typer>=0.9.0",
"rich>=13.0.0",
],
extras_require={
"gui": [
"customtkinter>=5.2.0",
],
"dev": [
"pytest>=7.0",
"twine>=4.0",
"build>=1.0",
],
},
entry_points={
"console_scripts": [
"pyriotdl=PyRiotDL.__main__:main",
"riotdl=PyRiotDL.__main__:main",
"pyr-dl=PyRiotDL.__main__:main",
]
},
keywords=[
"riot-games", "manifest", "rman", "downloader", "cli",
"league-of-legends", "valorant", "tft", "wild-rift",
"legends-of-runeterra", "2xko", "riot-client",
"patching", "cdn", "flatbuffer",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Games/Entertainment",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
python_requires=">=3.10",
)