-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
76 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
dist/ | ||
build/ | ||
__pycache__/ | ||
*.pyc | ||
*.cache | ||
**/*.egg-info/ | ||
**/*.pyc | ||
**/*.cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/usr/bin/bash | ||
#!/usr/bin/env bash | ||
|
||
python3 "$(dirname "$0")/../src/spotify_cmd_client/main.py" "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/usr/bin/bash | ||
#!/usr/bin/env bash | ||
|
||
python3 "$(dirname "$0")/../src/spotify_cmd_daemon/main.py" "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import os | ||
from setuptools import setup, find_packages | ||
|
||
with open("README.md", "r", encoding="utf-8") as fh: | ||
long_description = fh.read() | ||
|
||
setup( | ||
name="spotify-cmd", | ||
version="0.1.2", | ||
packages=find_packages(), | ||
install_requires=[ | ||
'argparse==1.4.0', | ||
'configparser==5.0.2', | ||
'spotipy==2.23.0', | ||
'daemon==1.2' | ||
], | ||
entry_points={ | ||
'console_scripts': [ | ||
'spotify-cmd = src.spotify_cmd_client.main:main', | ||
'spotify-cmd-daemon = src.spotify_cmd_daemon.main:main' | ||
] | ||
}, | ||
author="Maciej Ciemborowicz", | ||
author_email="[email protected]", | ||
description="Command line Spotify client", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/ciembor/spotify-cmd", | ||
license="GNU General Public License v3.0", | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: End Users/Desktop', | ||
'Topic :: Multimedia :: Sound/Audio :: Players', | ||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', | ||
'Natural Language :: English', | ||
'Operating System :: POSIX :: Linux', | ||
'Operating System :: MacOS', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters