source:
ralphm-patches/version.patch
Last change on this file was 62:3e957d5a5064, checked in by Ralph Meijer <ralphm@…>, 10 years ago | |
---|---|
File size: 1.7 KB |
-
doc/conf.py
# HG changeset patch # Parent 3cb91cfe0c3dabf07c85d788dcd3e9f5c27ceb4a diff --git a/doc/conf.py b/doc/conf.py
a b 1 1 # -*- coding: utf-8 -*- 2 2 # 3 # Wokkel documentation build configuration file, created by 4 # sphinx-quickstart on Mon May 7 11:15:38 2012. 3 # Wokkel documentation build configuration file. 5 4 # 6 5 # This file is execfile()d with the current directory set to its containing dir. 7 6 # … … 12 11 # serve to show the default. 13 12 14 13 # import sys, os 14 from wokkel import __version__ 15 15 16 16 # If extensions (or modules to document with autodoc) are in another directory, 17 17 # add these directories to sys.path here. If the directory is relative to the … … 48 48 # built documents. 49 49 # 50 50 # The short X.Y version. 51 version = ' 0.7'51 version = '.'.join(__version__.split('.')[0:2]) 52 52 # The full version, including alpha/beta/rc tags. 53 release = '0.7.0'53 release = __version__ 54 54 55 55 # The language for content autogenerated by Sphinx. Refer to documentation 56 56 # for a list of supported languages. -
setup.py
diff --git a/setup.py b/setup.py
a b 4 4 # See LICENSE for details. 5 5 6 6 from setuptools import setup 7 from wokkel import __version__ 7 8 8 9 # Make sure 'twisted' doesn't appear in top_level.txt 9 10 … … 28 29 egg_info.write_toplevel_names = _hacked_write_toplevel_names 29 30 30 31 setup(name='wokkel', 31 version= '0.7.0',32 version=__version__, 32 33 description='Twisted Jabber support library', 33 34 author='Ralph Meijer', 34 35 author_email='ralphm@ik.nu', -
wokkel/__init__.py
diff --git a/wokkel/__init__.py b/wokkel/__init__.py
a b 6 6 7 7 Support library for Twisted applications using XMPP protocols. 8 8 """ 9 10 __version__ = '0.7.0'
Note: See TracBrowser
for help on using the repository browser.