-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (33 loc) · 1.01 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
import re
import io
import os
with open('README.md', 'r') as f:
long_description = f.read()
with io.open('autoskip/__version__.py', 'rt', encoding='utf8') as f:
version = re.search(r'__version__ = \'(.*?)\'', f.read()).group(1)
setup(
name='autoskip',
version=version,
author='Blatzar',
author_email='[email protected]',
description='Blacklist artists and songs, no login needed.',
packages=find_packages(),
url='https://github.com/Blatzar/spotify-skipper',
keywords=['spotify', 'skip'],
install_requires=[
'colorama',
'asyncio',
'argparse',
'notify-send',
'pywin32;platform_system == "Windows"',
'dbus-python;platform_system != "Windows"',
'dbus_next;platform_system != "Windows"',
],
long_description=long_description,
long_description_content_type='text/markdown',
entry_points={
'console_scripts': ['autoskip=autoskip.cli:main'],
}
)