-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
39 lines (37 loc) · 1.15 KB
/
setup.py
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
from setuptools import setup, find_packages
setup(
name='sentiment_classifier',
version='0.7',
author='KATHURIA Pulkit',
author_email='[email protected]',
packages=find_packages('src'),
scripts=['scripts/senti_classifier'],
package_dir={'': 'src'},
package_data={'': ['data/*.txt', 'data/*.p'], },
include_package_data=True,
url='http://www.jaist.ac.jp/~s1010205/sentiment_classifier',
license='LICENSE.txt',
description='Sentiment Classification using Word Sense Disambiguation, Senti Word Net and word occurance statistics using movie review corpus',
long_description=open('README').read(),
install_requires=['nltk', 'numpy', 'argparse'],
classifiers=['Development Status :: 4 - Beta',
'Natural Language :: English',
'Topic :: Scientific/Engineering :: Artificial Intelligence'],
)
"""
Structure
=========
sentiment_classifier/
setup.py
README.txt
LICENCE.TXT
scripts/
senti_classifier
src/
senti_classifier/
classify.py
bag_of_words.py
data/
sample_review.txt
pickled_trained_data.p
"""