forked from release-engineering/fedmsg_meta_umb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·83 lines (78 loc) · 3.15 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
# Copyright (C) 2017-2019 Red Hat, Inc.
#
# fedmsg_meta_umb is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# fedmsg_meta_umb 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with fedmsg; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#
# Authors: Mike Bonnet <[email protected]>
# Ralph Bean <[email protected]>
from setuptools import setup, find_packages
f = open('README.rst')
long_description = f.read().strip()
long_description = long_description.split('split here', 1)[1]
f.close()
setup_requires = [
]
install_requires = [
'fedmsg',
]
tests_require = [
'nose',
]
entry_points = {
'fedmsg.meta': [
'brew=fedmsg_meta_umb.brew:BrewProcessor',
'rpmdiff=fedmsg_meta_umb.rpmdiff:RPMDiffProcessor',
'cips=fedmsg_meta_umb.cips:CIPSProcessor',
'distgit=fedmsg_meta_umb.distgit:DistGitProcessor',
'pub=fedmsg_meta_umb.pub:PubProcessor',
'errata=fedmsg_meta_umb.errata:ErrataProcessor',
'pungi=fedmsg_meta_umb.pungi:PungiProcessor',
'distill=fedmsg_meta_umb.distill:DistillProcessor',
'mbs=fedmsg_meta_umb.mbs:MBSProcessor',
'rhchi=fedmsg_meta_umb.rhchi:RHCHIProcessor',
'robosignatory=fedmsg_meta_umb.robosignatory:RobosignatoryProcessor',
'freshmaker=fedmsg_meta_umb.freshmaker:FreshmakerProcessor',
'odcs=fedmsg_meta_umb.odcs:ODCSProcessor',
'resultsdb=fedmsg_meta_umb.resultsdb:ResultsDBProcessor',
'metaxor=fedmsg_meta_umb.metaxor:MetaXORProcessor',
'greenwave=fedmsg_meta_umb.greenwave:GreenwaveProcessor',
'ci=fedmsg_meta_umb.ci:CIProcessor',
'jira=fedmsg_meta_umb.jira:JIRAProcessor',
'tower=fedmsg_meta_umb.tower:TowerProcessor',
'pnc=fedmsg_meta_umb.pnc:ProjectNewCastleProcessor',
'repotracker=fedmsg_meta_umb.repotracker:RepotrackerProcessor',
'waiverdb=fedmsg_meta_umb.waiverdb:WaiverDBProcessor',
'aqe-jenkins=fedmsg_meta_umb.aqe_jenkins:AqeJenkinsProcessor',
'clair=fedmsg_meta_umb.clair:ClairProcessor',
'snitch=fedmsg_meta_umb.snitch:SnitchProcessor',
]
}
setup(
name='fedmsg_meta_umb',
version='0.0.3',
description="fedmsg metadata providers for services on Red Hat's Unified Message Bus",
long_description=long_description,
author='Mike Bonnet',
author_email='[email protected]',
url='https://github.com/release-engineering/fedmsg_meta_umb/',
license='LGPLv2+',
setup_requires=setup_requires,
install_requires=install_requires,
tests_require=tests_require,
test_suite='nose.collector',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
entry_points=entry_points
)