1
0
mirror of https://github.com/gsi-upm/senpy synced 2025-09-19 04:52:21 +00:00

Added plugin architecture

This commit is contained in:
J. Fernando Sánchez
2014-10-17 12:47:17 +02:00
parent d0aa889124
commit 8405e5deef
12 changed files with 261 additions and 46 deletions

View File

@@ -2,7 +2,7 @@ from distutils.core import setup
setup(
name = 'senpy',
packages = ['senpy'], # this must be the same as the name above
version = '0.1',
version = '0.2',
description = '''
A sentiment analysis server implementation. Designed to be \
extendable, so new algorithms and sources can be used.
@@ -10,7 +10,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.1.tar.gz', # I'll explain this in a second
download_url = 'https://github.com/balkian/senpy/archive/0.2.tar.gz', # I'll explain this in a second
keywords = ['eurosentiment', 'sentiment', 'emotions', 'nif'], # arbitrary keywords
classifiers = [],
)