-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
30 lines (29 loc) · 1006 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
import setuptools
# reqs = (line.strip() for line in open("requirements.txt"))
LONG_DESC = open('README.md').read()
setuptools.setup(
name="yTermPlayer",
version="1.2.1",
author="Time Traveller",
author_email="[email protected]",
description="Play youtube playlists as audio on linux terminal ",
long_description=LONG_DESC,
long_description_content_type="text/markdown",
url="https://github.com/TimeTraveller-San/yTermPlayer",
packages=setuptools.find_packages(),
license="GPLv3",
install_requires=[
'pafy>=0.5.4',
'python-dateutil>=2.7.5',
'python-mpv>=0.3.9',
'urwid>=2.0.1',
'virtualenv>=16.0.0',
'youtube-dl>=2019.5.20',
],
python_requires='>=3',
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
],
entry_points={"console_scripts": ["yterm=yTermPlayer.__main__:main"]},
)