From 1a3ba066028e537ca4fdafec4a27344afd544c80 Mon Sep 17 00:00:00 2001
From: Daniel Stender <stender@debian.org>
Date: Sat, 19 Mar 2016 19:41:24 +0100
Subject: fix-missing-version.py

fix for citeproc/version.py is missing in the Github tarball
Forwarded: not-needed
---
 setup.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/setup.py b/setup.py
index ecdf9a6..e2c84cf 100755
--- a/setup.py
+++ b/setup.py
@@ -34,9 +34,9 @@ try:
 except OSError as e:
     print('Assume we are running from a source distribution.')
     # read version from VERSION_FILE
-    with open(VERSION_FILE) as version_file:
-        code = compile(version_file.read(), VERSION_FILE, 'exec')
-        exec(code)
+    # with open(VERSION_FILE) as version_file:
+    #     code = compile(version_file.read(), VERSION_FILE, 'exec')
+    #     exec(code)
 
 with open('README.rst') as file:
     README = file.read()
@@ -44,7 +44,7 @@ with open('README.rst') as file:
 
 setup(
     name='citeproc-py',
-    version=__version__,
+    version='0.3.0',
     packages=find_packages(),
     package_data={PACKAGE: ['data/locales/*.xml',
                             'data/schema/*.rng',
