-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (44 loc) · 1.07 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup
setup(
name='musicsync',
version='0.4.3',
description='Sync songs between music streaming services',
long_description_content_type='text/markdown',
long_description="from musicsync import spotify_gpm_copy spotify_gpm_copy([\"Discover Weekly\"])",
url='https://github.com/moxuz/musicsync',
author='Chris Pouliot',
author_email='me@chrispouliot.codes',
license='MIT',
test_suite='musicsync.tests',
packages=['musicsync'],
install_requires=[
"appdirs",
"beautifulsoup4",
"certifi",
"chardet",
"decorator",
"future",
"gmusicapi",
"gpsoauth",
"httplib2",
"idna",
"lxml",
"MechanicalSoup",
"mock",
"mutagen",
"oauth2client",
"pbr",
"proboscis",
"protobuf",
"pyasn1",
"pyasn1-modules",
"pycryptodomex",
"python-dateutil",
"requests",
"rsa",
"six",
"urllib3",
"validictory",
],
zip_safe=False
)