-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 927 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup
setup(
name='sentibank',
packages=['sentibank'],
package_data={'sentibank': ['dict_arXiv/*.csv', 'dict_arXiv/*.pickle', 'dict_arXiv/*.json']},
version='1.1.0',
license='CC BY-NC-SA 4.0',
description='Unifying sentiment lexicons and dictionaries into an accessible open python package',
author='Nick Oh',
author_email='nick.sh.oh@socius.org',
url='https://github.com/socius-org/sentibank',
download_url='https://github.com/socius-org/sentibank/archive/refs/tags/0.2.4.tar.gz', # Updated
keywords=[
'Sentiment Analysis',
'Sentiment Dictionary',
'Sentiment Lexicon',
'Semantic Orientation'
],
install_requires=[
'spacy>=3.7.2',
'spacymoji>=3.1.0',
'rich>=13.4.2',
'pandas>=2.1.4',
'pyenchant>=3.2.2'
],
python_requires='>=3.8',
include_package_data=True,
)