From d7a023531c9708f4ff84c4501f12f1c283785251 Mon Sep 17 00:00:00 2001 From: Clement Verna Date: Dec 16 2016 20:36:27 +0000 Subject: Add missing command mkconfig Signed-off-by: Clement Verna --- diff --git a/pagure_importer/commands/mkconfig.py b/pagure_importer/commands/mkconfig.py new file mode 100644 index 0000000..3b9da9b --- /dev/null +++ b/pagure_importer/commands/mkconfig.py @@ -0,0 +1,7 @@ +import click +from pagure_importer.app import app +from pagure_importer.utils import create_config + +@app.command() +def mkconfig(): + create_config() \ No newline at end of file diff --git a/setup.py b/setup.py index 9b860e7..5be8e88 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ def read(fname): setup( name='pagure_importer', packages=['pagure_importer'], - version='1.2.3', + version='2.0', description='CLI tool for imports to Pagure', long_description=read('README.md'), author='Vivek Anand',