You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
senpy/setup.py

18 lines
621 B
Python

from setuptools import setup
setup(
name = 'senpy',
packages = ['senpy'], # this must be the same as the name above
10 years ago
version = '0.2.3',
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
10 years ago
download_url = 'https://github.com/balkian/senpy/archive/0.2.3.tar.gz',
keywords = ['eurosentiment', 'sentiment', 'emotions', 'nif'], # arbitrary keywords
classifiers = [],
)