Skip to content
This repository has been archived by the owner on Jan 20, 2018. It is now read-only.

Commit

Permalink
Version 0.0.1-alpha
Browse files Browse the repository at this point in the history
Signed-off-by: Jean-Matthieu BARBIER <[email protected]>
  • Loading branch information
jmbarbier committed Oct 14, 2013
1 parent 32f82d5 commit f1ce11c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
1 change: 1 addition & 0 deletions version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VERSION="0.0.1-alpha"

0 comments on commit f1ce11c

Please sign in to comment.