From bdf19927751987b6714f832729f67a82983bb1a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Fri, 17 Oct 2014 19:13:43 +0200 Subject: [PATCH] Fixed plugins --- senpy/{plugins/__init__.py => plugins.py} | 0 setup.py | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename senpy/{plugins/__init__.py => plugins.py} (100%) diff --git a/senpy/plugins/__init__.py b/senpy/plugins.py similarity index 100% rename from senpy/plugins/__init__.py rename to senpy/plugins.py diff --git a/setup.py b/setup.py index 219ecaa..e6f8cdb 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup setup( name = 'senpy', packages = ['senpy'], # this must be the same as the name above - version = '0.2.2', + version = '0.2.3', description = ''' A sentiment analysis server implementation. Designed to be \ extendable, so new algorithms and sources can be used. @@ -11,7 +11,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.2.tar.gz', + download_url = 'https://github.com/balkian/senpy/archive/0.2.3.tar.gz', keywords = ['eurosentiment', 'sentiment', 'emotions', 'nif'], # arbitrary keywords classifiers = [], )