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:
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'],
+)