This repository was archived by the owner on Jan 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (39 loc) · 1.31 KB
/
setup.py
File metadata and controls
43 lines (39 loc) · 1.31 KB
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
from setuptools import setup, find_packages
import sys
if sys.version_info < (3, 4):
print('gpymusic requires python>=3.4.')
exit(1)
setup(
name='gpymusic',
version='1.2.1',
description='A simple TUI client for Google Play Music',
url='https://github.com/christopher-dG/gpymusic',
author='Chris de Graaf',
author_email='chrisadegraaf@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Environment :: Console :: Curses',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Operating System :: Unix',
'Topic :: Multimedia :: Sound/Audio :: Players',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
],
keywords='terminal music streaming',
packages=find_packages(exclude=['bin']),
install_requires=['gmusicapi'],
package_dir={'gpymusic': 'gpymusic'},
package_data={'gpymusic': ['config/*']},
scripts=[
'bin/gpymusic',
'bin/gpymusic-setup',
'bin/gpymusic-download-all',
'bin/gpymusic-get-dev-id',
'bin/gpymusic-oauth-login'
],
)