-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (44 loc) · 1.55 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
45
from setuptools import find_namespace_packages, setup
setup(
name="asreview-similarity-classifier",
version="0.0.1",
description="ASReivew Similarit Classifier Extension",
url="https://github.com/rohitgarud/Asreview-SimilarityClassifier",
author="Rohit Garud",
author_email="[email protected]",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
keywords="systematic review, ASReview",
packages=find_namespace_packages(include=["asreviewcontrib.*"]),
python_requires="~=3.6",
install_requires=[
"asreview>=1.0",
"sentence_transformers",
"gensim",
"scipy",
],
entry_points={
"asreview.models.classifiers": [
"similarity = asreviewcontrib.models.similarity:SimilarityClassifier",
],
"asreview.models.feature_extraction": [
# define feature_extraction algorithms
],
"asreview.models.balance": [
# define balance strategy algorithms
],
"asreview.models.query": [
# define query strategy algorithms
],
},
project_urls={
"Bug Reports": "https://github.com/rohitgarud/Asreview-SimilarityClassifier/issues",
"Source": "https://github.com/rohitgarud/Asreview-SimilarityClassifier",
},
)