1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-20 17:26:15 +02:00
github.com_openSUSE_osc/setup.py
Dr. Peter Poeml 20a13e7b3b - bump version (0.7)
- initial support for local builds (subcommand 'build')
2006-07-14 17:39:46 +00:00

18 lines
407 B
Python
Executable File

#!/usr/bin/env python
from distutils.core import setup
setup(name='osc',
version='0.7',
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'],
)