1
0
Fork 0
SpotifyLinuxOpen/setup.py

16 lines
481 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'],
2024-03-21 04:57:09 +00:00
long_description=open('README.md').read(),
2024-03-21 04:47:02 +00:00
entry_points={
"console_scripts": ["slopen = sllo.Main:main"]
}
)