System Gen84 @ 2025-07-24-02:00:39 by jonas@monolith

This commit is contained in:
2025-07-24 02:00:40 +02:00
parent 234a70cd78
commit b31e767134
15 changed files with 209 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
#!/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",
],
},
)