spotidrome/setup.py
2025-03-05 23:48:23 -05:00

15 lines
251 B
Python

from setuptools import setup
setup(
name='spotidrome',
version='0.1.0',
py_modules=['main'],
install_requires=[
'Click',
],
entry_points={
'console_scripts': [
'main = main:cli',
],
},
)