-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
executable file
·60 lines (52 loc) · 1.85 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
#!/usr/bin/env python3
from reviewboard.extensions.packaging import setup
from setuptools import find_packages
from rbintegrations import get_package_version
PACKAGE = 'rbintegrations'
with open('README.rst', 'r') as fp:
long_description = fp.read()
setup(
name=PACKAGE,
version=get_package_version(),
description=(
'A set of third-party service integrations for Review Board 5.0+.'
),
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://www.reviewboard.org/',
author='Beanbag, Inc.',
author_email='[email protected]',
maintainer='Beanbag, Inc.',
maintainer_email='[email protected]',
packages=find_packages(),
install_requires=[
'asana~=5.0.7',
'housekeeping~=1.1',
'PyYAML>=3.12',
],
entry_points={
'reviewboard.extensions':
'%s = rbintegrations.extension:RBIntegrationsExtension' % PACKAGE,
},
python_requires='>=3.8',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Review Board',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Communications :: Chat',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
],
)