2006-05-10 16:21:51 +02:00
#!/usr/bin/env python
from distutils . core import setup
2009-05-06 11:33:18 +02:00
import osc . core
2006-05-10 16:21:51 +02:00
setup ( name = ' osc ' ,
2009-05-06 11:33:18 +02:00
version = osc . core . __version__ ,
description = ' openSUSE (buildsystem) commander ' ,
long_description = ' Commandline client for the openSUSE Build Service, which allows to access repositories in the openSUSE Build Service in similar way as Subversion repositories. ' ,
2009-03-02 15:03:06 +01:00
author = ' openSUSE project ' ,
author_email = ' opensuse-buildservice@opensuse.org ' ,
2006-05-10 16:21:51 +02:00
license = ' GPL ' ,
2009-05-06 11:33:18 +02:00
platforms = [ ' Linux ' ] ,
keywords = [ ' openSUSE ' , ' SUSE ' , ' RPM ' , ' build ' , ' buildservice ' ] ,
2006-05-10 16:21:51 +02:00
url = ' https://forgesvn1.novell.com/svn/opensuse/trunk/buildservice/src/clientlib/python/osc/ ' ,
2009-03-24 20:12:39 +01:00
packages = [ ' osc ' , ' osc.util ' ] ,
2006-05-10 16:21:51 +02:00
scripts = [ ' osc_hotshot.py ' , ' osc-wrapper.py ' ] ,
)