-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 loc) · 1017 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
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python
from setuptools import setup
with open("README.md") as readme_file:
readme = readme_file.read()
with open("requirements.txt") as f:
requires = f.read()
setup(
name="yt_dlpr",
version="1.3",
description="Rich output of yt-dlp.",
long_description=readme,
long_description_content_type="text/markdown",
author="Folke",
author_email="[email protected]",
url="https://github.com/Secozzi/yt-dlpr",
install_requires=requires,
license="MIT license",
classifiers=[
"License :: OSI Approved :: MIT License",
"Topic :: Multimedia :: Video",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
],
packages=["yt_dlpr"],
entry_points = {
"console_scripts": [
"yt=yt_dlpr.__init__:main"
]
}
)