From f1ce11c876253f4f39bfe0dc3a4077cc8859d324 Mon Sep 17 00:00:00 2001 From: Jean-Matthieu BARBIER Date: Mon, 14 Oct 2013 03:59:22 +0200 Subject: [PATCH] Version 0.0.1-alpha Signed-off-by: Jean-Matthieu BARBIER --- conf.py | 6 +++--- setup.py | 7 ++++--- version.py | 1 + 3 files changed, 8 insertions(+), 6 deletions(-) create mode 100644 version.py diff --git a/conf.py b/conf.py index e390bde..29995a5 100644 --- a/conf.py +++ b/conf.py @@ -17,7 +17,7 @@ # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. sys.path.insert(0, os.path.abspath('.')) - +from version import VERSION # -- General configuration ----------------------------------------------------- # If your documentation needs a minimal Sphinx version, state it here. @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '0.0.1' +version = VERSION # The full version, including alpha/beta/rc tags. -release = '0.0.1' +release = VERSION # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index ab5418f..a21d91c 100644 --- a/setup.py +++ b/setup.py @@ -1,16 +1,17 @@ import os from distutils.core import setup from setuptools import find_packages +from version import VERSION -VERSION = "0.0.1" +VERSION = VERSION CLASSIFIERS = [ - 'Development Status :: 2 - Pre-Alpha', + 'Development Status :: 3 - Alpha', 'Environment :: Console', 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', 'Operating System :: OS Independent', - 'Programming Language :: Python', + 'Programming Language :: Python :: 3', 'Topic :: Documentation', 'Topic :: Software Development', 'Topic :: Text Processing :: Markup' diff --git a/version.py b/version.py new file mode 100644 index 0000000..a93b486 --- /dev/null +++ b/version.py @@ -0,0 +1 @@ +VERSION="0.0.1-alpha"