From a5e79bead3c68ec35c3f8db60de023bbf49900f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Wed, 5 Nov 2014 19:21:17 +0100 Subject: [PATCH] Version 0.2.5 - Pypi --- senpy/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/senpy/__init__.py b/senpy/__init__.py index ef6866e..6190b98 100644 --- a/senpy/__init__.py +++ b/senpy/__init__.py @@ -18,7 +18,7 @@ Sentiment analysis server in Python ''' -VERSION = "0.2.4" +VERSION = "0.2.5" import extensions import blueprints diff --git a/setup.py b/setup.py index 84ba7b7..7e90c9c 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ extendable, so new algorithms and sources can be used. author = 'J. Fernando Sanchez', author_email = 'balkian@gmail.com', url = 'https://github.com/balkian/senpy', # use the URL to the github repo - download_url = 'https://github.com/balkian/senpy/archive/0.2.3.tar.gz', + download_url = 'https://github.com/balkian/senpy/archive/{}.tar.gz'.format(senpy.VERSION), keywords = ['eurosentiment', 'sentiment', 'emotions', 'nif'], # arbitrary keywords classifiers = [], )