forked from fedora-infra/pdc-updater
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (36 loc) · 1016 Bytes
/
Copy pathsetup.py
File metadata and controls
43 lines (36 loc) · 1016 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
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import setup, find_packages
requirements = [
'fedmsg',
'fedmsg[commands]',
'fedmsg[consumers]',
'requests',
'dogpile.cache',
'python-fedora',
'packagedb-cli',
'pdc-client',
'six',
'modulemd',
]
with open('test-requirements.txt', 'r') as f:
test_requirements = f.readlines()
setup(
name='pdc-updater',
version='0.9.3',
description='Update the product-definition-center in response to fedmsg',
license='GPLv2+',
author='Ralph Bean',
author_email='rbean@redhat.com',
url='https://github.com/fedora-infra/pdc-updater',
install_requires=requirements,
tests_require=test_requirements,
packages=find_packages(),
include_data=True,
entry_points="""
[moksha.consumer]
updater = pdcupdater.consumer:PDCUpdater
[console_scripts]
pdc-updater-initialize = pdcupdater.commands:initialize
pdc-updater-audit = pdcupdater.commands:audit
pdc-updater-retry = pdcupdater.commands:retry
""",
)