-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
61 lines (59 loc) · 1.74 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
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
from setuptools import setup
version = "1.2.3"
info = "Download youtube videos and audios by title or link"
author = "Smartwa"
repo = "https://github.com/Simatwa/y2mate-api"
setup(
name="y2mate-api",
packages=["y2mate_api"],
version=version,
license="MIT",
author=author,
maintainer=author,
author_email="smartwacaleb@gmail.com",
description=info,
url=repo,
project_urls={"Bug Report": f"{repo}/issues/new"},
install_requires=[
"argparse>=1.1",
"tqdm==4.65.0",
"requests==2.31.0",
"colorama==0.4.6",
"appdirs==1.4.4",
"click==8.1.3",
"curl_cffi==0.7.2",
],
python_requires=">=3.9",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: Free For Home Use",
"Intended Audience :: Customer Service",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
entry_points={
"console_scripts": [
("y2mate = y2mate_api.console:main"),
]
},
keywords=[
"y2mate",
"videos",
"video-api",
"youtube",
"youtube-api",
"youtube-dl",
"y2mate-api",
],
)