diff --git a/MANIFEST.in b/MANIFEST.in index 0cb14c0fc..ff277eb36 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,4 @@ -include AUTHORS ChangeLog DEPENDS LICENSE msgfmt.py RELEASE-VERSION calc_version.py README.rst +include AUTHORS ChangeLog DEPENDS LICENSE msgfmt.py RELEASE-VERSION version.py README.rst graft docs/man diff --git a/generate_pot.py b/generate_pot.py index c7e3d2b49..0a871e1e1 100755 --- a/generate_pot.py +++ b/generate_pot.py @@ -19,7 +19,7 @@ from datetime import datetime from subprocess import call from gen_web_gettext import create_gettext_js -from calc_version import get_version +from version import get_version # Paths to exclude EXCLUSIONS = [ diff --git a/setup.py b/setup.py index f238d2144..4ba76264f 100755 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ from setuptools import find_packages, setup from setuptools.command.test import test as _test import msgfmt -from calc_version import get_version +from version import get_version try: from sphinx.setup_command import BuildDoc diff --git a/calc_version.py b/version.py similarity index 100% rename from calc_version.py rename to version.py