15 lines
286 B
Python
15 lines
286 B
Python
#!/usr/bin/env python
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="spotify_shortcuts",
|
|
version="1.0",
|
|
packages=find_packages(),
|
|
entry_points={
|
|
"console_scripts": [
|
|
"spotify-like=spotify_shortcuts.spotify_like:main",
|
|
],
|
|
},
|
|
)
|