1
0
mirror of https://github.com/gsi-upm/senpy synced 2024-09-20 22:01:41 +00:00
senpy/setup.py

19 lines
659 B
Python
Raw 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(
name = 'senpy',
packages = ['senpy'], # this must be the same as the name above
2014-11-04 20:31:41 +00:00
version = senpy.VERSION,
2014-09-16 14:45:06 +00:00
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
2014-11-05 18:21:17 +00:00
download_url = 'https://github.com/balkian/senpy/archive/{}.tar.gz'.format(senpy.VERSION),
2014-09-16 14:45:06 +00:00
keywords = ['eurosentiment', 'sentiment', 'emotions', 'nif'], # arbitrary keywords
classifiers = [],
)