forked from tombulled/python-youtube-music
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (38 loc) · 858 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
35
36
37
38
39
40
41
42
43
import setuptools
NAME = 'ytm'
VERSION = '0.0.0'
DESCRIPTION = 'Python YouTube Music Web API Client'
AUTHOR = 'Tom Bulled'
URL = 'https://github.com/tombulled/python-youtube-music'
PACKAGES = setuptools.find_packages()
PYTHON_VERSION = '>=3.0.0'
DEPENDENCIES_REQUIRED = \
(
'requests',
)
DEPENDENCIES_OPTIONAL = \
{
'dl': \
(
'youtube-dl',
'mutagen',
'Pillow',
),
'dev': \
(
'pytest',
),
}
config = dict \
(
name = NAME,
version = VERSION,
description = DESCRIPTION,
author = AUTHOR,
packages = PACKAGES,
install_requires = DEPENDENCIES_REQUIRED,
extras_require = DEPENDENCIES_OPTIONAL,
python_requires = PYTHON_VERSION,
url = URL,
)
setuptools.setup(**config)