forked from el-cornetillo/senti-py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (42 loc) · 2.12 KB
/
Copy pathsetup.py
File metadata and controls
46 lines (42 loc) · 2.12 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='senti-py',
version='1.0.1',
description='A sentiment analysis classifier in spanish.',
long_description=long_description,
url='https://github.com/aylliote/senti-py',
download_url='https://github.com/aylliote/senti-py/archive/master.zip',
author='Elliot Hofman',
author_email='elliot.hofman@gmail.com',
license='Sondeos',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Sondeos developpers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: Sondeos License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='natural language processing sentiment analysis',
# packages=find_packages(exclude=['contrib', 'docs', 'tests']),
packages = ['classifier', 'crawlers'],
install_requires=['pandas', 'numpy', 'tqdm','nltk', 'sklearn', 'marisa-trie','spacy','es_core_web_md'],
extras_require={
'crawl': ['bs4', 'urllib']
},
data_files=[('data', ['classifier/data/sensaCineSerie.txt', 'classifier/data/sensaCineMovie.txt',
'classifier/data/pedidosYa.txt', 'classifier/data/tripAdvisorHotel.txt',
'classifier/data/tripAdvisorRestaurant.txt', 'classifier/data/tripAdvisorAttraction.rar',
'classifier/data/openCine.txt', 'classifier/data/quejas.txt',
'classifier/data/apestan.rar', 'classifier/data/badTweets.txt',
'classifier/data/goodTweets.txt', 'classifier/data/tassTweets.txt',
'classifier/data/MercadoPos.rar', 'classifier/data/MercadoNeg.txt' ])]
)