blob: 26fb08316f8dd2a500ef195d7efa7899c246db9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
diff -ruN python-elementary.orig/setup.py python-elementary/setup.py
--- python-elementary.orig/setup.py 2009-05-20 21:14:09.000000000 +0200
+++ python-elementary/setup.py 2009-05-20 21:22:29.000000000 +0200
@@ -14,7 +14,6 @@
"http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/")
from distutils.core import setup
-from setuptools import find_packages
from distutils.extension import Extension
from Cython.Distutils import build_ext
import commands
@@ -75,7 +74,7 @@
description = 'Python bindings for Elementary',
long_description = '',
keywords = 'wrapper bindings ui elementary graphics',
- packages = find_packages(),
+ packages = ['elementary'],
# headers = headers,
# classifiers =
# packages =
|