This repository has been archived by the owner on Jun 17, 2022. It is now read-only.
generated from asreview/template-extension-new-model
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
44 lines (43 loc) · 1.49 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
from setuptools import setup
from setuptools import find_namespace_packages
setup(
name='asreview-extension-tfidf-extractor',
version='0.1',
description='tf-idf with saving functionality',
url='https://github.com/asreview/asreview-extension-tfidf-extractor',
author='Jelle Teijema',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='systematic review',
packages=find_namespace_packages(include=['asreviewcontrib.*']),
python_requires='~=3.6',
install_requires=[
'sklearn',
'asreview>=0.13',
'gensim',
],
entry_points={
'asreview.models.classifiers': [
],
'asreview.models.feature_extraction': [
'tfidf_grab = asreviewcontrib.models.tfidf_grab:Tfidf_grab',
'doc2vec_grab = asreviewcontrib.models.doc2vec_grab:Doc2Vec_grab',
],
'asreview.models.balance': [
# define balance strategy algorithms
],
'asreview.models.query': [
# define query strategy algorithms
]
},
project_urls={
'Bug Reports': 'https://github.com/asreview/asreview-extension-vocab-extractor/',
'Source': 'https://github.com/asreview/asreview-extension-vocab-extractor/',
},
)