1
0
Fork 0
SpotifyLinuxOpen/setup.py

15 lines
434 B
Python
Raw Normal View History

2024-03-21 04:47:02 +00:00
from setuptools import setup
setup(
name='SpotifyLinuxOpen',
version='0.1',
url='https://git.orudo.ru/trueold89/SpotifyLinuxOpen',
author='trueold89',
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'],
entry_points={
"console_scripts": ["slopen = sllo.Main:main"]
}
)