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-24 10:46:17 +0400
committerJacek Konieczny <jajcus@jajcus.net>2003-06-24 10:46:17 +0400
commitd473373299d4087bedc2ed6a402f94983f85ea2c (patch)
tree73ece7ad975a5991e30a2a3bef2e3c6323397c3e /setup.py
parent5cf813696bfbb92284f4946587f9420bac4e039e (diff)
- version generator
- CJC included in distribution
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index b0334d1..640dac2 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,9 @@
#! /usr/bin/env python
-# $Id: setup.py,v 1.5 2003/06/08 16:17:25 jajcus Exp $
+# $Id: setup.py,v 1.6 2003/06/24 06:46:17 jajcus Exp $
+
+import os.path
+
+execfile(os.path.join("pyxmpp","version.py"))
from distutils.core import setup, Extension
@@ -7,7 +11,7 @@ from distutils.core import setup, Extension
setup(
#-- Package description
name = 'pyxmpp',
- version = '0.0',
+ version = version,
description = 'XMPP implementation for Python',
author = 'Jacek Konieczny',
author_email = 'jajcus@bnet.pl',