-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
64 lines (58 loc) · 2.07 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
# This file is a part of github2fedmsg, a pubsubhubbub to zeromq bridge.
# Copyright (C) 2014, Red Hat, Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
requires = [
'fedora-messaging',
'pyramid',
'SQLAlchemy',
'transaction',
'pyramid_tm',
'pyramid_mako',
'zope.sqlalchemy',
'weberror',
'velruse',
'tw2.core',
]
setup(name='github2fedmsg',
version='0.3.6',
description='Pubsubhubbub app that rebroadcasts GitHub events over fedora-messaging',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Programming Language :: Python",
"Framework :: Pylons",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='Ralph Bean',
author_email='rbean@redhat.com',
url='https://github.com/fedora-infra/github2fedmsg',
keywords='web wsgi bfg pylons pyramid',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
test_suite='github2fedmsg',
install_requires=requires,
entry_points="""\
[paste.app_factory]
main = github2fedmsg:main
[console_scripts]
initialize_github2fedmsg_db = github2fedmsg.scripts.initializedb:main
""",
)