-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 849 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="mediafire-dl",
version="0.1.0",
description="Simple command-line script to download files from mediafire based on gdown",
url="https://github.com/Juvenal-Yescas/mediafire-dl",
author="Juvenal Yescas",
author_email="[email protected]",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7"
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
keywords="audo ai",
py_modules=['mediafire_dl'],
install_requires=[
"requests",
"six",
"tqdm",
],
entry_points={
"console_scripts": ["mediafire-dl=mediafire_dl:main"],
},
)