-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathsetup.py
executable file
·31 lines (30 loc) · 1.09 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
from setuptools import setup
from distutils.core import setup
from spotifycli.version import __version__
setup(
name='spotify-cli-linux',
version=__version__,
python_requires='>=3.6',
description="a command line interface to Spotify on Linux",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
author='Piotr Wittchen',
author_email='[email protected]',
url='https://github.com/pwittchen/spotify-cli-linux',
license='GPL 3.0',
packages=['spotifycli'],
install_requires=['jeepney', 'lyricwikia'],
entry_points={
"console_scripts": ['spotifycli = spotifycli.spotifycli:main']
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Multimedia :: Sound/Audio'
],
)