You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
896 B
31 lines
896 B
import setuptools
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setuptools.setup(
|
|
name="spotify-mpd-sync-weskerfoot",
|
|
version="0.0.1",
|
|
author="Wesley Kerfoot",
|
|
author_email="wes@wesk.tech",
|
|
description="Synchronize Spotify Playlist to MPD",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/weskerfoot/Spotify-MPD-Sync",
|
|
packages=setuptools.find_packages(),
|
|
install_requires = [
|
|
"spotipy>=2.4.4",
|
|
"python-mpd2>=1.0.0",
|
|
"bottle>=0.12.16"
|
|
],
|
|
classifiers= [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
entry_points = {
|
|
"console_scripts" : [
|
|
"spotsync = spotify_mpd_sync.msplaylist.spotify:run_sync"
|
|
]
|
|
}
|
|
)
|
|
|