1
0
Fork 0

Add README.md

This commit is contained in:
trueold89 2024-03-21 07:57:09 +03:00
parent a3635c3eb0
commit 836be67d7d
Signed by: trueold89
GPG Key ID: C122E85DD49E6B30
2 changed files with 21 additions and 0 deletions

20
README.md Normal file
View File

@ -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/*
```

View File

@ -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"]
}