Skip to content

Commit 00a3358

Browse files
cleanup for 2.0 release
1 parent 979a5f2 commit 00a3358

File tree

3 files changed

+26
-8
lines changed

3 files changed

+26
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This library processes crowdsourcing results from Amazon Mechanical Turk and Cro
44

55
## Installation
66

7-
To install the stable version from PyPI, *pip* for your OS, then install using `pip install crowdtruth`
7+
To install the stable version from PyPI, *pip* for your OS, then install using `pip install crowdtruth`
88

99
To install the latest version from source, download the library and install it using `python setup.py develop`
1010

crowdtruth/models/metrics.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,6 @@ def relation_quality_score(relations, work_sent_rel_dict, sqs, wqs):
217217

218218
@staticmethod
219219
def run(results, config, max_delta = 0.001):
220-
221-
logging.info("Using experimental version a2")
222220

223221
judgments = results['judgments'].copy()
224222
units = results['units'].copy()

setup.py

Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,43 @@
22
import sys, os
33

44
setup(name='crowdtruth',
5-
version='2.0-alpha.1',
5+
version='2.0',
66
description="Disagreement based metrics for the processing and evaluation of crowdsourced annotations",
7-
long_description="CrowdTruth is an approach to machine-human computing for collecting annotation data on text, images and videos. The approach is focussed specifically on collecting gold standard data for training and evaluation of cognitive computing systems. The original framework was inspired by the IBM Watson project for providing improved (multi-perspective) gold standard (medical) text annotation data for the training and evaluation of various IBM Watson components, such as Medical Relation Extraction, Medical Factor Extraction and Question-Answer passage alignment.",
8-
classifiers=[],
7+
long_description="CrowdTruth is an approach to machine-human computing for collecting annotation data on text, images and videos. The approach is focussed specifically on collecting annotation data by capturing and interpreting inter-annotator disagreement. ",
8+
classifiers = [
9+
'Development Status :: 4 - Beta',
10+
'Intended Audience :: Developers',
11+
'Intended Audience :: Education',
12+
'Intended Audience :: Information Technology',
13+
'Intended Audience :: Science/Research',
14+
'License :: OSI Approved :: Apache Software License',
15+
'Operating System :: OS Independent',
16+
'Programming Language :: Python :: 2.7',
17+
'Programming Language :: Python :: 3.4',
18+
'Programming Language :: Python :: 3.5',
19+
'Programming Language :: Python :: 3.6',
20+
'Topic :: Scientific/Engineering',
21+
'Topic :: Scientific/Engineering :: Artificial Intelligence',
22+
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
23+
'Topic :: Scientific/Engineering :: Information Analysis',
24+
'Topic :: Text Processing',
25+
'Topic :: Text Processing :: Filters',
26+
'Topic :: Text Processing :: General',
27+
'Topic :: Text Processing :: Indexing',
28+
'Topic :: Text Processing :: Linguistic'],
929
keywords=['CrowdTruth','crowdsourcing','disagreement','metrics','crowdflower','amazon mechanical turk'],
1030
author='Vrije Universiteit Amsterdam',
1131
author_email='crowdwatson@gmail.com',
1232
url='http://crowdtruth.org',
1333
license='Apache 2.0',
14-
download_url = 'https://github.com/CrowdTruth/CrowdTruth-core/archive/v2.0-alpha.1.tar.gz',
34+
download_url = 'https://github.com/CrowdTruth/CrowdTruth-core/archive/v2.0.tar.gz',
1535
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
1636
include_package_data=True,
1737
zip_safe=False,
1838
test_suite='nose.collector',
1939
install_requires=[
2040
'pymodm>=0.3.0',
21-
'pandas'
41+
'pandas>=0.23.1'
2242
],
2343
setup_requires=[],
2444
entry_points="""

0 commit comments

Comments
 (0)