# HG changeset patch # User Ludovic Chabant # Date 1389518540 28800 # Node ID adc70e8618046af2c071641e592567622d9e5cce # Parent a7aa5c86350ee4dfce1499f9d7d0a1c81168978d Some fixes to the Pypi packaging. diff -r a7aa5c86350e -r adc70e861804 setup.py --- a/setup.py Sun Jan 12 01:18:33 2014 -0800 +++ b/setup.py Sun Jan 12 01:22:20 2014 -0800 @@ -1,6 +1,7 @@ import os import os.path from setuptools import setup, find_packages +from wikked import VERSION def read(fname): @@ -8,14 +9,19 @@ return fp.read() +#TODO: get the build version from the source control revision. +BUILD_VERSION = 4 +FULL_VERSION = '%s.%s' % (VERSION, BUILD_VERSION) + + setup( name='Wikked', - version='0.1.0.3', + version=FULL_VERSION, description=("A wiki engine entirely managed with text files " "stored in a revision control system."), author='Ludovic Chabant', author_email='ludovic@chabant.com', - url="http://bolt80.com/wikked/", + url="https://github.com/ludovicchabant/Wikked", license="Apache 2.0", keywords="wiki mercurial hg git", packages=find_packages(exclude=["tests"]), diff -r a7aa5c86350e -r adc70e861804 wikked/__init__.py --- a/wikked/__init__.py Sun Jan 12 01:18:33 2014 -0800 +++ b/wikked/__init__.py Sun Jan 12 01:22:20 2014 -0800 @@ -0,0 +1,2 @@ +VERSION = '0.1.0' +