-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
39 lines (36 loc) · 1.17 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
37
38
39
try:
from setuptools import setup, find_packages
except ImportError as e:
from distutils.core import setup
__version__ = "3.0.0-alpha"
config = {
'name': 'melon-music-player',
'version': __version__,
'description': 'A MusicPlayer which can be controlled by different controllers',
'long_description': open('README.md').read(),
'author': 'Melle Dijkstra',
'author_email': '[email protected]',
'classifiers': [
'Development Status :: 3 - Alpha',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
'url': 'https://melledijkstra.nl',
'download_url': 'https://github.com/MelleDijkstra/PythonMusicPlayer',
'license': 'MIT',
'install_requires': [
'typing==3.6.4',
'youtube_dl==2016.12.1',
'python_vlc==3.0.101',
'setuptools==38.4.0',
'tinytag==0.18.0',
'grpcio==1.8.4',
'grpcio-tools==1.8.4',
'protobuf==3.15.0',
'mutagen==1.40.0',
],
'packages': find_packages(exclude=['docs', 'tests']),
}
setup(**config)