-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (33 loc) · 1.23 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
import codecs
from setuptools import setup
with codecs.open('README.rst', 'r', 'utf-8') as fd:
setup(
name='AirProfile',
version='1.0.12',
description='Automatic analysis of Airbnb host profiles.',
long_description=fd.read(),
author='Cornell Tech',
author_email='[email protected]',
maintainer='Kenneth Lim',
maintainer_email='[email protected]',
keywords=[
'Airbnb', 'self-disclosure', 'trustworthiness', 'sharing economy',
'social exchange'
],
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
url='https://github.com/sTechLab/AirProfile',
license='MIT',
install_requires=[
'beautifulsoup4', 'cachetools', 'lxml', 'nltk', 'numpy', 'pathlib',
'scikit-learn ~= 0.18.0', 'textstat', 'ujson'
],
include_package_data=True,
zip_safe=False)