From ede59ab40e896293adba1278c42463fd8a5ba0fa Mon Sep 17 00:00:00 2001 From: Lance Stout Date: Wed, 24 Aug 2011 21:54:36 -0700 Subject: Clean and get setup.py working once and for all. Fixes: README.rst now included Double line spacing removed from long_description Source package now includes tests, examples, etc using Manifest.in README.rst typos fixed Added README.rst section on installing dnspython for Python3 Version bumped to RC2 Version is now taken from sleekxmpp.version.__version__ without having to pull in the entire library Added 'test' command for setup.py Simplified testall.py Docs build cleanly from source package after installation --- sleekxmpp/version.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 sleekxmpp/version.py (limited to 'sleekxmpp/version.py') diff --git a/sleekxmpp/version.py b/sleekxmpp/version.py new file mode 100644 index 00000000..33c7583e --- /dev/null +++ b/sleekxmpp/version.py @@ -0,0 +1,13 @@ +""" + SleekXMPP: The Sleek XMPP Library + Copyright (C) 2010 Nathanael C. Fritz + This file is part of SleekXMPP. + + See the file LICENSE for copying permission. +""" + +# We don't want to have to import the entire library +# just to get the version info for setup.py + +__version__ = '1.0rc2' +__version_info__ = (1, 0, 0, 'rc2', 0) -- cgit v1.2.3