-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
35 lines (32 loc) · 1.05 KB
/
setup.py
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
from setuptools import setup
with open("requirements.txt", "r", encoding="utf-8") as f:
requirements = f.readlines()
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="uqload_dl",
version="1.1",
author="Joel Flores",
license="GPLv3",
description="Download any video from the Uqload site",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/JoelFH23/uqload-downloader-python",
packages=["uqload_dl"],
install_requires=requirements,
keywords=["uqload", "download", "video"],
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Multimedia :: Video",
],
python_requires=">=3.9",
entry_points={
"console_scripts": [
"uqload_dl=uqload_dl.cli:main",
]
},
)