|
1
|
|
|
from setuptools import setup, find_packages |
|
2
|
|
|
# import os |
|
3
|
|
|
# import sys |
|
4
|
|
|
|
|
5
|
|
|
setup( |
|
6
|
|
|
name='crowdtruth', |
|
7
|
|
|
version='2.1', |
|
8
|
|
|
description= |
|
9
|
|
|
"Disagreement based metrics for the processing and evaluation of crowdsourced annotations", |
|
10
|
|
|
long_description= |
|
11
|
|
|
("CrowdTruth is an approach to machine-human computing for collecting annotation data on " + |
|
12
|
|
|
"text, images and videos. The approach is focussed specifically on collecting annotation" + |
|
13
|
|
|
" data by capturing and interpreting inter-annotator disagreement. "), |
|
14
|
|
|
classifiers=[ |
|
15
|
|
|
'Development Status :: 4 - Beta', |
|
16
|
|
|
'Intended Audience :: Developers', |
|
17
|
|
|
'Intended Audience :: Education', |
|
18
|
|
|
'Intended Audience :: Information Technology', |
|
19
|
|
|
'Intended Audience :: Science/Research', |
|
20
|
|
|
'License :: OSI Approved :: Apache Software License', |
|
21
|
|
|
'Operating System :: OS Independent', |
|
22
|
|
|
'Programming Language :: Python :: 2.7', |
|
23
|
|
|
'Programming Language :: Python :: 3.5', |
|
24
|
|
|
'Programming Language :: Python :: 3.6', |
|
25
|
|
|
'Topic :: Scientific/Engineering', |
|
26
|
|
|
'Topic :: Scientific/Engineering :: Artificial Intelligence', |
|
27
|
|
|
'Topic :: Scientific/Engineering :: Human Machine Interfaces', |
|
28
|
|
|
'Topic :: Scientific/Engineering :: Information Analysis', |
|
29
|
|
|
# 'Topic :: Scientific/Engineering :: Crowdsourcing', |
|
30
|
|
|
'Topic :: Text Processing', |
|
31
|
|
|
'Topic :: Text Processing :: Linguistic'], |
|
32
|
|
|
keywords=['CrowdTruth', 'crowdsourcing', 'disagreement', \ |
|
33
|
|
|
'metrics', 'crowdflower', 'amazon mechanical turk'], |
|
34
|
|
|
author='Vrije Universiteit Amsterdam', |
|
35
|
|
|
author_email='[email protected]', |
|
36
|
|
|
url='http://crowdtruth.org', |
|
37
|
|
|
license='Apache 2.0', |
|
38
|
|
|
download_url='https://github.com/CrowdTruth/CrowdTruth-core/archive/2.1.zip', |
|
39
|
|
|
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), |
|
40
|
|
|
include_package_data=True, |
|
41
|
|
|
zip_safe=False, |
|
42
|
|
|
test_suite='test', |
|
43
|
|
|
install_requires=[ |
|
44
|
|
|
'pymodm>=0.3.0', |
|
45
|
|
|
'pandas>=0.23.1', |
|
46
|
|
|
'numpy>=1.13.3', |
|
47
|
|
|
'scipy>=1.0.0', |
|
48
|
|
|
'chardet>=3.0.4', |
|
49
|
|
|
'coverage>=4.5.1', |
|
50
|
|
|
'codecov>=2.0.15', |
|
51
|
|
|
'dateparser>=0.7.0' |
|
52
|
|
|
], |
|
53
|
|
|
setup_requires=["pytest-runner"], |
|
54
|
|
|
tests_require=["pytest"], |
|
55
|
|
|
entry_points=""" |
|
56
|
|
|
[console_scripts] |
|
57
|
|
|
CrowdTruth = crowdtruth:CrowdTruth |
|
58
|
|
|
""", |
|
59
|
|
|
) |
|
60
|
|
|
|