-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 914 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 914 Bytes
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
from reviewboard.extensions.packaging import setup
PACKAGE = 'rbExtendedApproval'
VERSION = '1.2.7'
setup(
name=PACKAGE,
version=VERSION,
description='Review Board extension: ExtendedApproval',
author='Andre Klitzing',
author_email='aklitzing@gmail.com',
url='https://github.com/misery/ExtendedApproval',
packages=[str('extended_approval')],
install_requires=[
'reviewboard>=6',
],
entry_points={
'reviewboard.extensions': (
'%s = extended_approval.extension:ExtendedApproval' % PACKAGE
),
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Review Board',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)