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

dev.gajim.org/gajim/python-nbxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2012-05-08 16:19:11 +0400
committerYann Leboulanger <asterix@lagaule.org>2012-05-08 16:19:11 +0400
commit97ac572c20083fe0283c4621dc6e54603a32a310 (patch)
tree42c7b0d6121e71538d804136a8929b7b25adb96c /setup.py
initial revisionnbxmpp-0.1
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100755
index 0000000..e735504
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,12 @@
+#!/usr/bin/env python
+
+from distutils.core import setup
+
+setup(name='nbxmpp',
+ version='0.1',
+ description='Non blocking Jabber/XMPP module',
+ author='Yann Leboulanger',
+ author_email='asterix@lagaule.org',
+ url='http://python-nbxmpp.gajim.org',
+ packages=['nbxmpp'],
+)