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

19 lines
662 B
Python
Raw Permalink Normal View History

2014-10-17 17:06:19 +00:00
from setuptools import setup
2014-11-04 20:31:41 +00:00
import senpy
2014-10-17 17:06:19 +00:00
2014-09-16 14:45:06 +00:00
setup(
2014-11-20 18:29:49 +00:00
name='senpy',
packages=['senpy'], # this must be the same as the name above
version=senpy.VERSION,
description='''
2014-09-16 14:45:06 +00:00
A sentiment analysis server implementation. Designed to be \
extendable, so new algorithms and sources can be used.
''',
2014-11-20 18:29:49 +00:00
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/{}.tar.gz'.format(senpy.VERSION),
keywords=['eurosentiment', 'sentiment', 'emotions', 'nif'], # arbitrary keywords
classifiers=[],
2014-09-16 14:45:06 +00:00
)