mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-10 14:56:14 +01:00
be4f2b031f
fostering open source contributions says that it can discourage contribution by conveying a false sense of "code ownership". Marking territory is negatively affecting collaboration. See http://www.youtube.com/watch?v=ZSFDm3UYkeE
18 lines
433 B
Python
Executable File
18 lines
433 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(name='osc',
|
|
version='0.7',
|
|
description='opensuse commander',
|
|
author='openSUSE project',
|
|
author_email='opensuse-buildservice@opensuse.org',
|
|
license='GPL',
|
|
url='https://forgesvn1.novell.com/svn/opensuse/trunk/buildservice/src/clientlib/python/osc/',
|
|
|
|
packages=['osc'],
|
|
scripts=['osc_hotshot.py', 'osc-wrapper.py'],
|
|
|
|
)
|
|
|