-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (41 loc) · 1.34 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
from setuptools import setup
from setuptools import find_namespace_packages
setup(
name='asreview-template-model-extension',
version='1.0',
description='Example classifier extension',
url='https://github.com/asreview/asreview',
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',
packages=find_namespace_packages(include=['asreviewcontrib.*']),
python_requires='~=3.6',
install_requires=[
'asreview>=1.0'
],
entry_points={
'asreview.models.classifiers': [
'nb_example = asreviewcontrib.models:NaiveBayesDefaultParamsModel',
],
'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/asreview/asreview/issues',
'Source': 'https://github.com/asreview/asreview/',
},
)