forked from simon-weber/Google-Music-Playlist-Importer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 921 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from distutils.core import setup
setup(
name='Google-Music-Playlist-Importer',
version='2012.03.28',
author='Simon Weber',
author_email='simon@simonmweber.com',
url='https://github.com/simon-weber/Google-Music-Playlist-Importer',
packages=[],
scripts=['gm_playlist_importer.py'],
license='GPLv3',
description='A Python script to import local playlists to Google Music.',
long_description="""\
A local list of song metadata will be matched against already-uploaded songs in Google Music. This is most useful for people who keep their music library organized.
""",
install_requires = [
"gmusicapi == 2012.03.27",
"chardet"],
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Sound/Audio",
]
)