Single sourcing version number in fanficfare/__init__.py

This commit is contained in:
Jim Miller
2016-08-30 21:50:35 -05:00
parent 173fca8773
commit 43637fa67b
4 changed files with 33 additions and 15 deletions
+3 -1
View File
@@ -17,13 +17,15 @@ from os import path
with codecs.open('DESCRIPTION.rst', encoding='utf-8') as f:
long_description = f.read()
from fanficfare import __version__
setup(
name="FanFicFare",
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version="2.3.6",
version=__version__,
description='A tool for downloading fanfiction to eBook formats',
long_description=long_description,