forked from wellcometrust/grants_tagger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 776 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 776 Bytes
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
from setuptools import setup, find_packages
from grants_tagger.__version__ import __version__
setup(
name="grants-tagger",
author="Arne Robben",
author_email="a.robben@wellcome.ac.uk",
long_description="A machine learning model to tag grants. You can find more information on https://github.com/wellcometrust/grants_tagger",
packages=find_packages(),
version=__version__,
entry_points={"console_scripts": "grants_tagger=grants_tagger.__main__:app"},
install_requires=[
"scikit-learn==1.0.0",
"libpecos==0.3.0",
"typer",
"pandas",
"numpy",
"scipy",
"requests",
"dvc",
"wasabi",
"wellcomeml",
"gensim==4.0.0",
],
tests_require=["pytest", "tox"],
)