forked from Docheinstein/music-dragon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (41 loc) · 1.25 KB
/
Copy pathsetup.py
File metadata and controls
54 lines (41 loc) · 1.25 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
44
45
46
47
48
49
50
51
52
53
54
import os
import sys
from setuptools import setup, find_packages
from music_dragon import APP_NAME, APP_VERSION
def read(file_name):
with open(os.path.join(os.path.dirname(__file__), file_name)) as f:
return f.read()
print("setup.py prefix:", sys.prefix)
setup(
name=APP_NAME,
version=APP_VERSION,
python_requires=">=3",
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'music-dragon = music_dragon.main:main',
]
},
# Dependencies
install_requires=[
"musicbrainzngs",
"yt_dlp",
"ytmusicapi",
"python-vlc",
"eyed3",
"PyQt5",
"wikidata",
"requests",
"levenshtein",
],
# Metadata
author="Stefano Dottore",
author_email="docheinstein@gmail.com",
description="All-in-one music manager: scrapes albums, artists and songs from musicbrainz and automatically download them from youtube.",
long_description_content_type="text/markdown",
long_description=read('README.md'),
license="MIT",
keywords="music manager youtube spotify musicbrainz musicbrainzngs tag cover eyed3 ytmusicapi youtube_dl",
url="https://github.com/Docheinstein/music-dragon",
)