-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
50 lines (44 loc) · 1.57 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
import os
from setuptools import find_packages, setup
# directory = os.path.abspath(os.path.dirname(__file__))
"""
with open(os.path.join(directory, 'README.rst')) as f:
long_description = f.read()
"""
setup(
name="chatimusmaximus",
version='0.5.1',
description='Chat GUI for youtube, twitch, livecoding, and WatchPeopleCode chats',
# long_description=long_description,
url='https://github.com/benhoff/chatimusmaximus',
license='GPL3',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Utilities',
'Operating System :: OS Independent'],
author='Ben Hoff',
author_email='[email protected]',
entry_points={'vexbot.plugins': ['chatimusmaximus = chatimusmaximus.__main__'],
'gui_scripts': ['chatimusmaximus = chatimusmaximus.__main__:main']},
packages= find_packages(), # exclude=['docs', 'tests']
package_data={'chatimusmaximus': ['default_settings.yml',
'gui/resources/click.wav',
'gui/resources/icons/*',
'gui/resources/buttons/*']},
install_requires=[
'pluginmanager',
'pyzmq',
'PyYAML',
'PyQt5',
'Quamash',
'vexbot',
'vexmessage',
],
extras_require={
'dev': ['flake8'],
},
)