forked from Ejhfast/empath-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (18 loc) · 663 Bytes
/
setup.py
File metadata and controls
18 lines (18 loc) · 663 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#from distutils.core import setup
from setuptools import setup
setup(
name = 'empath',
packages = ['empath'], # this must be the same as the name above
version = '0.089',
description = 'A tool for text analysis',
author = 'Ethan Fast',
author_email = 'ejhfast@gmail.com',
url = 'https://github.com/Ejhfast/empath-client', # use the URL to the github repo
download_url = 'https://github.com/Ejhfast/meta/empath-client/0.40',
keywords = ['social science', 'lexicon', 'text analysis'], # arbitrary keywords
package_data= { 'empath': ['data/categories.tsv', "data/user/blank"]},
classifiers = [],
install_requires=[
'requests'
]
)