-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 929 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
26
27
28
29
30
31
32
33
34
from os import path
from setuptools import setup, find_packages
root = path.abspath(path.dirname(__file__))
with open(path.join(root, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name='lastfm-mpris2-scrobbler',
version='1.0.4',
description="Last.fm scrobbler via MPRIS2 in Linux",
url="https://github.com/Ladbaby/lastfm-scrobbler",
author="Ladbaby",
author_email="[email protected]",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
"coloredlogs",
"mpris2",
"pylast",
"PyYAML",
"dbus-python",
"pyxdg",
],
tests_require=["pytest"],
entry_points={
"console_scripts": [
"lastfm-mpris2-scrobbler = lastfm_mpris2_scrobbler.__main__:main",
],
},
zip_safe=False,
)