-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
36 lines (34 loc) · 1.18 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
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
setup(name="SpotPRIS2",
version='0.4.1',
author="Adrian Freund",
author_email="[email protected]",
url="https://github.com/freundTech/SpotPRIS2",
description="MPRIS2 interface for Spotify Connect",
long_description=long_description,
long_description_content_type="text/markdown",
packages=['spotpris2'],
package_dir={'spotpris2': "spotpris2"},
package_data={'spotpris2': ['mpris/*.xml', 'html/*.html']},
install_requires=[
"PyGObject",
"pydbus",
"spotipy>=2.8",
"appdirs",
],
entry_points={
'console_scripts': ["spotpris2=spotpris2.__main__:main"]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: No Input/Output (Daemon)",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Multimedia :: Sound/Audio",
],
python_requires='>=3.6',
)