-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
42 lines (40 loc) · 1.3 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
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="spotpl",
version="1.1.0",
install_requires=["spotdl >= 1.2.0"],
packages=find_packages(),
description="Download youtube songs in mp3 format and plays them",
long_description=long_description,
long_description_content_type="text/markdown",
author="Rohit Potter",
author_email="[email protected]",
license="MIT",
python_requires=">=3.4",
url="https://github.com/rpotter12/spotify-downloader-music-player",
download_url="https://pypi.org/project/spotpl/",
keywords=[
"spotify",
"downloader",
"download",
"music",
"youtube",
"mp3",
"album",
"metadata",
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={"console_scripts": ["spotpl = spotpl.spotpl:songnamee"]},
)