mirror of
https://github.com/openSUSE/osc.git
synced 2025-01-13 09:16:14 +01:00
aaa41561be
- add setup.py - add osc-wrapper.py as a wrapper script, so the module can be used when installed in the system as well as in the uninstalled source directory
18 lines
407 B
Python
Executable File
18 lines
407 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(name='osc',
|
|
version='0.2',
|
|
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'],
|
|
|
|
)
|
|
|