Add README.md
This commit is contained in:
parent
a3635c3eb0
commit
836be67d7d
|
@ -0,0 +1,20 @@
|
|||
# SpotifyLinuxOpen
|
||||
|
||||
#### A simple cli-utility that allows you to open "open.spotify.com" in the Spotify desktop client on Linux
|
||||
|
||||
## Usage:
|
||||
**Link:** `https://open.spotify.com/<type>/<id>`
|
||||
```shell
|
||||
slopen https://open.spotify.com/track/4PTG3Z6ehGkBFwjybzWkR8?si=a4ec356b33fd49d3
|
||||
```
|
||||
|
||||
## Build:
|
||||
|
||||
**Build python pkg**
|
||||
```shell
|
||||
pip install setuptools && python setup.py
|
||||
```
|
||||
**Install**
|
||||
```shell
|
||||
pip install dist/*
|
||||
```
|
1
setup.py
1
setup.py
|
@ -8,6 +8,7 @@ setup(
|
|||
author_email='trueold89@orudo.ru',
|
||||
description="A simple cli-utility that allows you to open 'open.spotify.com' in the Spotify desktop client on Linux",
|
||||
packages=['sllo'],
|
||||
long_description=open('README.md').read(),
|
||||
entry_points={
|
||||
"console_scripts": ["slopen = sllo.Main:main"]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue