-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.46 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
import pathlib
from setuptools import find_packages, setup
from youtube_stream.__init__ import __version__
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name="youtube-stream",
version=__version__,
description="Stream Youtube Music Videos from Command Line!",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/sanjib-sen/youtube-stream",
author="Sanjib Kumar Sen",
author_email="sksenonline@gmail.com",
license="MIT",
keywords = ['youtube', 'streaming', 'vlc', 'video', 'audio', 'automation'],
download_url = 'https://github.com/sanjib-sen/youtube-stream/archive/v_'+__version__+'.tar.gz',
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Home Automation",
"Topic :: Multimedia :: Video :: Display",
],
packages=find_packages(exclude=("tests",)),
package_dir={'youtube_stream': 'youtube_stream'},
package_data={'youtube_stream': ['*.txt']},
include_package_data=True,
install_requires=["SpeechRecognition"],
entry_points={
"console_scripts": [
"stream=youtube_stream.__main__:main",
]
},
)