forked from NISH1001/playx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 653 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 653 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
exec(open("playx/version.py").read())
setup(
name="playx",
packages=["playx", "playx.playlist"],
author="NISH1001",
author_email="nishanpantha@gmail.com",
description="Search and play any song from terminal.",
long_description="Search and play any song from terminal seamlessly.",
url="http://github.com/NISH1001/playx",
entry_points={"console_scripts": ["playx = playx.main:main"]},
version=__version__,
license="MIT",
install_requires=[
"youtube_dl",
"requests",
"beautifulsoup4",
"selenium",
"lxml",
"youtube_search",
],
)