-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
32 lines (30 loc) · 895 Bytes
/
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
# SPDX-License-Identifier: GPL-3.0+
from setuptools import setup, find_packages
setup(
name='estuary_updater',
version='0.1',
description='A micro-service that updates the graph database in real-time for Estuary',
author='Red Hat, Inc.',
author_email='mprahl@redhat.com',
license='GPLv3+',
packages=find_packages(exclude=['tests']),
python_requires=">=3.6",
include_package_data=True,
install_requires=[
'estuary @ https://github.com/release-engineering/estuary-api/tarball/1.0.0#egg=estuary',
'fedmsg',
'fedmsg[commands]',
'fedmsg[consumers]',
'requests',
'requests_kerberos',
'koji',
'moksha.hub',
'PyOpenSSL',
'stomper',
'neomodel>=4.0.3',
],
entry_points="""
[moksha.consumer]
estuary_updater = estuary_updater.consumer:EstuaryUpdater
"""
)