资源简介
英文情绪分析,英文情绪分析,英文情绪分析,英文情绪分析,英文情绪分析,英文情绪分析,英文情绪分析,英文情绪分析
代码片段和文件信息
import codecs
import os
from setuptools import setup find_packages
HERE = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
“““
Build an absolute path from *parts* and and return the contents of the
resulting file. Assume UTF-8 encoding.
“““
with codecs.open(os.path.join(HERE *parts) “rb“ “utf-8“) as f:
return f.read()
setup(
name = ‘vaderSentiment‘
#packages = [‘vaderSentiment‘] # this must be the same as the name above
packages = find_packages(exclude=[‘tests*‘]) # a better way to do it than the line above -- this way no typo/transpo errors
include_package_data=True
version = ‘2.5‘
description = ‘VADER Sentiment Analysis. VADER (Valence Aware Dictionary and sEntiment Reasoner) is a lexicon and rule-based sentiment analysis tool that is specifically attuned to sentiments expressed in social media and works well on texts from other domains.‘
long_description=read(“README.rst“)
author = ‘C.J. Hutto‘
author_email = ‘cjhutto@gatech.edu‘
license = ‘MIT License: http://opensource.org/licenses/MIT‘
url = ‘https://github.com/cjhutto/vaderSentiment‘ # use the URL to the github repo
download_url = ‘https://github.com/cjhutto/vaderSentiment/archive/master.zip‘
keywords = [‘vader‘ ‘sentiment‘ ‘analysis‘ ‘opinion‘ ‘mining‘ ‘nlp‘ ‘text‘ ‘data‘
‘text analysis‘ ‘opinion analysis‘ ‘sentiment analysis‘ ‘text mining‘ ‘twitter sentiment‘
‘opinion mining‘ ‘social media‘ ‘twitter‘ ‘social‘ ‘media‘] # arbitrary keywords
classifiers = [‘Development Status :: 4 - Beta‘ ‘Intended Audience :: Science/Research‘
‘License :: OSI Approved :: MIT License‘ ‘Natural Language :: English‘
‘Programming Language :: Python :: 2.7‘ ‘Topic :: Scientific/Engineering :: Artificial Intelligence‘
‘Topic :: Scientific/Engineering :: Information Analysis‘ ‘Topic :: Text Processing :: Linguistic‘
‘Topic :: Text Processing :: General‘]
)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-09-22 11:55 vaderSentiment-master\
文件 731 2017-09-22 11:55 vaderSentiment-master\.gitattributes
文件 862 2017-09-22 11:55 vaderSentiment-master\.gitignore
文件 1076 2017-09-22 11:55 vaderSentiment-master\LICENSE.txt
文件 116 2017-09-22 11:55 vaderSentiment-master\MANIFEST.in
文件 19544 2017-09-22 11:55 vaderSentiment-master\README.rst
目录 0 2017-09-22 11:55 vaderSentiment-master\additional_resources\
文件 2338514 2017-09-22 11:55 vaderSentiment-master\additional_resources\hutto_ICWSM_2014.tar.gz
文件 95 2017-09-22 11:55 vaderSentiment-master\setup.cfg
文件 2033 2017-09-22 11:55 vaderSentiment-master\setup.py
目录 0 2017-09-22 11:55 vaderSentiment-master\vaderSentiment\
文件 17 2017-09-22 11:55 vaderSentiment-master\vaderSentiment\__init__.py
文件 28949 2017-09-22 11:55 vaderSentiment-master\vaderSentiment\vaderSentiment.py
文件 426631 2017-09-22 11:55 vaderSentiment-master\vaderSentiment\vader_lexicon.txt
- 上一篇:STM32 SIM900A GSM程序源码
- 下一篇:Vxworks参考
评论
共有 条评论