Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Jajcus/pyxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacek Konieczny <jajcus@jajcus.net>2003-06-04 16:08:42 +0400
committerJacek Konieczny <jajcus@jajcus.net>2003-06-04 16:08:42 +0400
commita7e1df82e0128bec42555a0669970420741fb8ae (patch)
tree5acc8a8933035713c1fc221d5c19281ee454fe5d /setup.py
parentb1841efa5c244ec8ed42d1f097cb1afa8876d8e2 (diff)
- source tree reorganization
Diffstat (limited to 'setup.py')
-rw-r--r--[-rwxr-xr-x]setup.py23
1 files changed, 5 insertions, 18 deletions
diff --git a/setup.py b/setup.py
index d5ffcd4..bbf32e2 100755..100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,5 @@
#! /usr/bin/env python
-# $Id: setup.py,v 1.1 2003/06/03 12:50:43 jajcus Exp $
+# $Id: setup.py,v 1.2 2003/06/04 12:08:35 jajcus Exp $
from distutils.core import setup, Extension
@@ -15,7 +15,7 @@ setup(
license = 'LGPL',
ext_modules = [
Extension(
- 'pyxmpp._libxml2addon',
+ 'pyxmpp.libxml2addon._libxml2addon',
[
'libxml2addon/xmlreader.c',
'libxml2addon/tree.c',
@@ -28,23 +28,10 @@ setup(
),
],
#-- Python modules
- py_modules = [
- 'pyxmpp.client',
- 'pyxmpp.error',
- 'pyxmpp.expdict',
- 'pyxmpp.iq',
- 'pyxmpp.jid',
- 'pyxmpp.message',
- 'pyxmpp.presence',
- 'pyxmpp.stanza',
- 'pyxmpp.stream',
- 'pyxmpp.utils',
+ packages = [
+ 'pyxmpp',
'pyxmpp.libxml2addon',
- 'pyxmpp.sasl.core',
- 'pyxmpp.sasl.plain',
- 'pyxmpp.sasl.digest_md5',
+ 'pyxmpp.sasl',
],
- #-- where to find the python modules
- package_dir = { 'pyxmpp': '.' },
)