From 32712a879811f79ed01adb50310239076eb8e1ea Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Fri, 1 May 2015 14:20:01 +0300 Subject: [PATCH] Fetch app version from config file --- setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index a9fbca00d..79c8a4268 100644 --- a/setup.py +++ b/setup.py @@ -10,10 +10,12 @@ from itertools import chain from cx_Freeze import setup, Executable +import config + app_name = 'pyfa' -app_version = '0.0.0' -app_description = 'TODO' +app_version = '{}'.format(config.version) +app_description = 'Python fitting assistant' packages = ['eos', 'gui', 'service', 'utils']