forked from dlatk/dlatk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
134 lines (117 loc) · 3.84 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
import sys
import os
import subprocess
_version = sys.version_info[0]
try:
from setuptools import setup
except ImportError:
if _version >= 3:
sys.exit("Need setuptools to install dlatk for Python 3.x")
from distutils.core import setup
DESCRIPTION = "DLATK is an end to end human text analysis package, specifically suited for social media and social scientific applications. It is written in Python 3 and developed by the World Well-Being Project at the University of Pennsylvania and Stony Brook University. "
LONG_DESCRIPTION = """
# DLATK v1.1
This package offers end to end text analysis: feature extraction, part-of-speech tagging, correlation,
mediation, prediction / classification, dimensionality reduction and clustering, and wordcloud visualization. For more information please visit:
- http://dlatk.wwbp.org
- https://www.github.com/dlatk/dlatk
- http://wwbp.org
## Citation
If you use DLATK in your work please cite the following paper:
```
@InProceedings{DLATKemnlp2017,
author = "Schwartz, H. Andrew
and Giorgi, Salvatore
and Sap, Maarten
and Crutchley, Patrick
and Eichstaedt, Johannes
and Ungar, Lyle",
title = "DLATK: Differential Language Analysis ToolKit",
booktitle = "Proceedings of the 2017 Conference on Empirical Methods in Natural Language Processing: System Demonstrations",
year = "2017",
publisher = "Association for Computational Linguistics",
pages = "55--60",
location = "Copenhagen, Denmark",
url = "http://aclweb.org/anthology/D17-2010"
}
```
## Contact
Please send bug reports, patches, and other feedback to:
Salvatore Giorgi ([email protected]) or H. Andrew Schwartz ([email protected])
"""
DISTNAME = 'dlatk'
PACKAGES = ['dlatk',
'dlatk.lib',
'dlatk.lexicainterface',
'dlatk.mysqlmethods',
'dlatk.tools',
]
LICENSE = 'GNU General Public License v3 (GPLv3)'
AUTHOR = "H. Andrew Schwartz, Salvatore Giorgi, Maarten Sap, Patrick Crutchley, Lukasz Dziurzynski and Megha Agrawal"
EMAIL = "[email protected], [email protected]"
MAINTAINER = "Salvatore Giorgi, H. Andrew Schwartz"
MAINTAINER_EMAIL = "[email protected], [email protected]"
URL = "http://dlatk.wwbp.org"
DOWNLOAD_URL = 'https://github.com/dlatk/dlatk'
CLASSIFIERS = [
'Environment :: Console',
'Natural Language :: English',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering',
]
VERSION = '1.1.6'
PACKAGE_DATA = {
'dlatk': ['data/*.sql'],
'dlatk.lib': ['lib/meloche_bd.ttf', 'lib/oval_big_mask.png', 'lib/oval_mask.png'],
}
INCLUDE_PACKAGE_DATA = True
SETUP_REQUIRES = [
'numpy',
]
INSTALL_REQUIRES = [
'matplotlib>=1.3.1',
'mysqlclient',
'nltk>=3.1',
'numpy',
'pandas>=0.17.1',
'patsy>=0.2.1',
'python-dateutil>=2.5.0',
'scikit-learn>=0.17.1',
'scipy>=0.13.3',
'SQLAlchemy>=0.9.9',
'statsmodels>=0.5.0',
]
EXTRAS_REQUIRE = {
'image': ['image'],
'jsonrpclib-pelix': ['jsonrpclib-pelix>=0.2.8'],
'langid': ['langid>=1.1.4'],
'rpy2': ['rpy2'],
'simplejson': ['simplejson>=3.3.1'],
'textstat': ['textstat>=0.6.1'],
'wordcloud': ['wordcloud==1.1.3'],
}
SCRIPTS = ['dlatkInterface.py']
if __name__ == "__main__":
setup(name=DISTNAME,
author=AUTHOR,
author_email=EMAIL,
version=VERSION,
packages=PACKAGES,
package_data=PACKAGE_DATA,
include_package_data=INCLUDE_PACKAGE_DATA,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
license=LICENSE,
url=URL,
download_url=DOWNLOAD_URL,
classifiers=CLASSIFIERS,
setup_requires=SETUP_REQUIRES,
extras_require=EXTRAS_REQUIRE,
install_requires=INSTALL_REQUIRES,
scripts = SCRIPTS,
)