-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 678 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 678 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(name='TSA',
version='0.1',
description='Graduate work for CGI on Twitter Sentiment analysis',
url='https://github.com/Brew8it/Twitter-SA-Project',
author='Brew8it and Selberget',
author_email='bandgren2@gmail.com & johan.selberg@gmail.com',
license='MIT',
packages=['TSA'],
install_requires=[
'NumPy',
'SciPy',
'scikit-learn',
'pandas',
'nltk',
'tweepy',
'bs4',
'flask',
],
zip_safe=False)