1
0
mirror of https://github.com/gsi-upm/senpy synced 2025-11-08 02:48:16 +00:00

Refactoring, name change

This commit is contained in:
J. Fernando Sánchez
2014-09-16 16:45:06 +02:00
parent 3a33e405e7
commit 3524f57209
8 changed files with 235 additions and 2 deletions

16
setup.py Normal file
View File

@@ -0,0 +1,16 @@
from distutils.core import setup
setup(
name = 'senpy',
packages = ['senpy'], # this must be the same as the name above
version = '0.1',
description = '''
A sentiment analysis server implementation. Designed to be \
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/tarball/0.1', # I'll explain this in a second
keywords = ['eurosentiment', 'sentiment', 'emotions', 'nif'], # arbitrary keywords
classifiers = [],
)