-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·44 lines (41 loc) · 1.39 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
from __future__ import unicode_literals
from setuptools import setup
PACKAGE = "rbExtendedBots"
VERSION = "0.0.2"
setup(
name=PACKAGE,
version=VERSION,
license='MIT',
description='Just another Review Bots',
long_description='Additional tools and checker for Review Bot',
author='Andre Klitzing',
author_email='[email protected]',
url='https://github.com/misery/ExtendedBots',
packages=[str('extended_bots')],
entry_points={
'reviewbot.tools': [
'chardetector = extended_bots.chardetector:ChardetectorTool',
'liquibase = extended_bots.liquibase:LiquibaseTool',
'regex = extended_bots.regex:RegexTool',
'uncrustify = extended_bots.uncrustify:UncrustifyTool',
],
},
install_requires=[
'chardet>=2.3.0',
'reviewbot-worker>=1.0',
'RBTools>=1.0',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Framework :: Review Board',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development',
'Topic :: Software Development :: Quality Assurance',
],
)