mirror of
https://src.koozali.org/infra/smeserver-koji.git
synced 2024-11-21 17:17:28 +01:00
15 lines
359 B
Python
15 lines
359 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name='tag2distrepo',
|
||
|
version='2.0',
|
||
|
description='Koji Hub plugin to automatically regenerate distrepos on tag operations',
|
||
|
author='Patrick Uiterwijk',
|
||
|
author_email='puiterwijk@redhat.com',
|
||
|
url='https://pagure.io/tag2distrepo/',
|
||
|
license='gplv2+',
|
||
|
packages=[
|
||
|
'tag2distrepo',
|
||
|
],
|
||
|
)
|