1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-08-10 01:04:04 +02:00
Files
github.com_openSUSE_osc/setup.py
Dr. Peter Poeml aa36c25505 - add 'help' subcommand (and add help :-)
- make all subcommands functions -- so they can be used from outside (they
  still print directly their output; they could become iterators later)
- deprecate 'init' subcommand
- 0.5
2006-05-23 13:48:58 +00:00

18 lines
407 B
Python
Executable File

#!/usr/bin/env python
from distutils.core import setup
setup(name='osc',
version='0.5',
description='opensuse commander',
author='Peter Poeml',
author_email='poeml@suse.de',
license='GPL',
url='https://forgesvn1.novell.com/svn/opensuse/trunk/buildservice/src/clientlib/python/osc/',
packages=['osc'],
scripts=['osc_hotshot.py', 'osc-wrapper.py'],
)