Commit c4b87488 authored by Nicolas Delaby's avatar Nicolas Delaby

Fix installation of egg and provide backward compatibility for importing path

parent a5b7fd67
0.8.1.2 (unreleased)
0.8.1.3 (unreleased)
------------------
0.8.1.2 (2011/01/25)
------------------
* [fix] installation of egg
0.8.1.1 (2011/01/25)
------------------
* [Fix] position starts to 1
......
......@@ -5,7 +5,7 @@ from setuptools import setup, find_packages
import re
api_version = re.search(r'\s*__version__\s*=\s*(\S+)',
open('src/ERP5Diff.py').read()).group(1).strip()
open('src/ERP5Diff/ERP5Diff.py').read()).group(1).strip()
revision = 2
version = '%s.%s' % (api_version.replace("'", ''), revision)
......
# for backward compatibility with old import path
from ERP5Diff import ERP5Diff as ERP5Diff
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment