|
2 | 2 | import sys, os |
3 | 3 |
|
4 | 4 | setup(name='crowdtruth', |
5 | | - version='2.0-alpha.1', |
| 5 | + version='2.0', |
6 | 6 | 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'], |
9 | 29 | keywords=['CrowdTruth','crowdsourcing','disagreement','metrics','crowdflower','amazon mechanical turk'], |
10 | 30 | author='Vrije Universiteit Amsterdam', |
11 | 31 | author_email='crowdwatson@gmail.com', |
12 | 32 | url='http://crowdtruth.org', |
13 | 33 | 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', |
15 | 35 | packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), |
16 | 36 | include_package_data=True, |
17 | 37 | zip_safe=False, |
18 | 38 | test_suite='nose.collector', |
19 | 39 | install_requires=[ |
20 | 40 | 'pymodm>=0.3.0', |
21 | | - 'pandas' |
| 41 | + 'pandas>=0.23.1' |
22 | 42 | ], |
23 | 43 | setup_requires=[], |
24 | 44 | entry_points=""" |
|
0 commit comments