7defc05eff
Kiwi consists of a set of classes and wrappers for PyGTK that were developed to provide a sort of framework for applications. Fully object-oriented, and roughly Smalltalk's MVC, Kiwi provides a simple, practical way to build forms, windows and widgets that transparently access and display your object data. Kiwi was primarily designed to make implementing the UI for Stoq easier, and it is released under the LGPL. Kiwi is inspired by Allen Holub's Visual Proxy.
31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
$OpenBSD: patch-setup_py,v 1.1.1.1 2009/09/22 15:09:39 jasper Exp $
|
|
|
|
Force usage of setuptools over distutils to prevent an:
|
|
error: option --single-version-externally-managed not recognized
|
|
|
|
And remove empty directories.
|
|
|
|
--- setup.py.orig Tue Sep 22 14:58:42 2009
|
|
+++ setup.py Tue Sep 22 15:03:48 2009
|
|
@@ -14,6 +14,7 @@ simpler.
|
|
|
|
import commands
|
|
from distutils.extension import Extension
|
|
+import setuptools.command.install
|
|
import sys
|
|
|
|
from kiwi import kiwi_version
|
|
@@ -57,12 +58,6 @@ setup(name="kiwi",
|
|
'kiwiwidgets', '*.png')),
|
|
(get_site_packages_dir('gazpacho', 'widgets'),
|
|
listfiles('gazpacho-plugin', 'kiwiwidgets.py')),
|
|
- ('share/doc/kiwi',
|
|
- ('AUTHORS', 'ChangeLog', 'NEWS', 'README')),
|
|
- ('share/doc/kiwi/howto',
|
|
- listfiles('doc/howto/', '*')),
|
|
- ('share/doc/kiwi/api',
|
|
- listfiles('doc/api/', '*')),
|
|
],
|
|
scripts=['bin/kiwi-i18n',
|
|
'bin/kiwi-ui-test'],
|