forked from AdrienPensart/musicbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (50 loc) · 1.47 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# -*- coding: utf-8 -*-
from setuptools import setup
packages = \
['musicbot', 'musicbot.cli', 'musicbot.commands']
package_data = \
{'': ['*']}
install_requires = \
['attrs>=21.2.0,<22.0.0',
'beartype>=0.10.0,<0.11.0',
'click-skeleton>=0.21,<0.22',
'colorlog>=6.4.1,<7.0.0',
'deepdiff>=5.7.0,<6.0.0',
'edgedb>=0.22.0,<0.23.0',
'fuzzywuzzy>=0.18.0,<0.19.0',
'humanize>=4.0.0,<5.0.0',
'logging-tree>=1.8,<2.0',
'mutagen>=1.44.0,<2.0.0',
'progressbar2>=4.0.0,<5.0.0',
'prompt_toolkit>=3.0.2,<4.0.0',
'pyacoustid>=1.1,<2.0',
'pydub>=0.25.1,<0.26.0',
'python-Levenshtein>=0.12.2,<0.13.0',
'python-slugify>=6.0.1,<7.0.0',
'python-vlc>=3.0,<4.0',
'requests>=2.24.0,<3.0.0',
'rich>=12.0.0,<13.0.0',
'spotipy>=2.16.0,<3.0.0',
'types-python-slugify>=5.0.0,<6.0.0',
'types-requests>=2.25.0,<3.0.0',
'watchdog>=2.0.2,<3.0.0',
'youtube_dl>=2021.3.3,<2022.0.0']
entry_points = \
{'console_scripts': ['musicbot = musicbot.main:main']}
setup_kwargs = {
'name': 'musicbot',
'version': '0.7.5',
'description': 'Music swiss army knife',
'long_description': None,
'author': 'Adrien Pensart',
'author_email': 'crunchengine@gmail.com',
'maintainer': 'Adrien Pensart',
'maintainer_email': 'crunchengine@gmail.com',
'url': 'https://github.com/AdrienPensart/musicbot',
'packages': packages,
'package_data': package_data,
'install_requires': install_requires,
'entry_points': entry_points,
'python_requires': '>=3.10,<4.0',
}
setup(**setup_kwargs)