From cdc78a3a3eb8c67454115be046a96c6f089f192f Mon Sep 17 00:00:00 2001 From: kaliko Date: Sat, 16 Nov 2013 13:21:30 +0100 Subject: [PATCH] Get version from sima.core in setup script --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) mode change 100644 => 100755 setup.py diff --git a/setup.py b/setup.py old mode 100644 new mode 100755 index 7dd34aa..1211086 --- a/setup.py +++ b/setup.py @@ -8,6 +8,8 @@ from setuptools import setup from os import listdir from os.path import isfile, isdir +from sima.core import __version__ as VERSION + DESCRIPTION = """ sima is a Python application meant to feed your MPD playlist with tracks from artists similar to your currently playing track, provided that these @@ -38,7 +40,7 @@ classifiers = [ ] setup(name='sima', - version='0.12.0.dev', + version=VERSION, download_url='http://codingteam.net/project/sima/download', url='http://codingteam.net/project/sima', description='Automagically add titles to MPD playlist', -- 2.39.2