generated from asreview/template-extension-new-model
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (43 loc) · 1.58 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-multilingual-feature-extractor',
version='0.1',
description='A feature extractor based on distiluse-base-multilingual-cased-v1.',
url='https://github.com/asreview/asreview-multilingual-feature-extractor',
author='ASReview team',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='systematic review multilingual feature extractor',
packages=find_namespace_packages(include=['asreviewcontrib.*']),
python_requires='~=3.6',
install_requires=[
'scikit-learn',
'asreview>=0.13',
'sentence_transformers'
],
entry_points={
'asreview.models.classifiers': [
# define classifier algorithms
],
'asreview.models.feature_extraction': [
'multilingual = asreviewcontrib.models.distiluse_base_multilingual:MultilingualSentenceTransformer',
],
'asreview.models.balance': [
# define balance strategy algorithms
],
'asreview.models.query': [
# define query strategy algorithms
]
},
project_urls={
'Bug Reports': 'https://github.com/asreview/asreview-multilingual-feature-extractor/issues',
'Source': 'https://github.com/asreview/asreview-multilingual-feature-extractor/',
},
)