1
0
mirror of https://github.com/gsi-upm/senpy synced 2024-11-22 08:12:27 +00:00

Fixed plugins

This commit is contained in:
J. Fernando Sánchez 2014-10-17 19:13:43 +02:00
parent e06fc2e671
commit bdf1992775
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ from setuptools import setup
setup( setup(
name = 'senpy', name = 'senpy',
packages = ['senpy'], # this must be the same as the name above packages = ['senpy'], # this must be the same as the name above
version = '0.2.2', version = '0.2.3',
description = ''' description = '''
A sentiment analysis server implementation. Designed to be \ A sentiment analysis server implementation. Designed to be \
extendable, so new algorithms and sources can be used. 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 = 'J. Fernando Sanchez',
author_email = 'balkian@gmail.com', author_email = 'balkian@gmail.com',
url = 'https://github.com/balkian/senpy', # use the URL to the github repo 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 keywords = ['eurosentiment', 'sentiment', 'emotions', 'nif'], # arbitrary keywords
classifiers = [], classifiers = [],
) )