forked from AgarFu/errbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·140 lines (116 loc) · 4.8 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
#!/usr/bin/env python
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
import os
import sys
from setuptools import setup, find_packages
py_version = sys.version_info[:2]
if py_version < (3, 6):
raise RuntimeError('Errbot requires Python 3.6 or later')
VERSION_FILE = os.path.join('errbot', 'version.py')
deps = ['webtest',
'setuptools',
'flask',
'requests',
'jinja2',
'pyOpenSSL',
'colorlog',
'markdown>=3.3',
'ansi',
'Pygments>=2.0.2',
'pygments-markdown-lexer>=0.1.0.dev39', # sytax coloring to debug md
'dulwich>=0.19.16', # python implementation of git
'deepmerge>=0.1.0',
]
src_root = os.curdir
def read_version():
"""
Read directly the errbot/version.py and gives the version without loading Errbot.
:return: errbot.version.VERSION
"""
variables = {}
with open(VERSION_FILE) as f:
exec(compile(f.read(), 'version.py', 'exec'), variables)
return variables['VERSION']
def read(fname, encoding='ascii'):
return open(os.path.join(os.path.dirname(__file__), fname), 'r', encoding=encoding).read()
if __name__ == "__main__":
VERSION = read_version()
args = set(sys.argv)
changes = read('CHANGES.rst', 'utf8')
if changes.find(VERSION) == -1:
raise Exception('You forgot to put a release note in CHANGES.rst ?!')
if args & {'bdist', 'bdist_dumb', 'bdist_rpm', 'bdist_wininst', 'bdist_msi'}:
raise Exception("err doesn't support binary distributions")
packages = find_packages(src_root, include=['errbot', 'errbot.*'])
setup(
name="errbot",
version=VERSION,
packages=packages,
entry_points={
'console_scripts': [
'errbot = errbot.cli:main',
]
},
install_requires=deps,
tests_require=['nose', 'webtest', 'requests'],
package_data={
'errbot': ['backends/*.plug',
'backends/*.html',
'backends/styles/*.css',
'backends/images/*.svg',
'core_plugins/*.plug',
'core_plugins/*.md',
'core_plugins/templates/*.md',
'storage/*.plug',
'templates/initdir/example.py',
'templates/initdir/example.plug',
'templates/initdir/config.py.tmpl',
'templates/*.md',
'templates/new_plugin.py.tmpl',
],
},
extras_require={
'graphic': ['PySide', ],
'hipchat': ['hypchat', 'slixmpp', 'pyasn1', 'pyasn1-modules'],
'IRC': ['irc', ],
'slack': ['slackclient>=1.0.5,<2.0', ],
'slack-rtm': ['slackclient>=2.0', ],
'slack-events': ['slackclient>=2.0', 'slackeventsapi>=2.2'],
'telegram': ['python-telegram-bot', ],
'XMPP': ['slixmpp', 'pyasn1', 'pyasn1-modules'],
':python_version<"3.7"': ['dataclasses'], # backward compatibility for 3.3->3.6 for dataclasses
':sys_platform!="win32"': ['daemonize'],
},
author="errbot.io",
author_email="[email protected]",
description="Errbot is a chatbot designed to be simple to extend with plugins written in Python.",
long_description_content_type="text/x-rst",
long_description=''.join([read('README.rst'), '\n\n', changes]),
license="GPL",
keywords="xmpp irc slack hipchat gitter tox chatbot bot plugin chatops",
url="http://errbot.io/",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Communications :: Chat",
"Topic :: Communications :: Chat :: Internet Relay Chat",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
src_root=src_root,
platforms='any',
)