forked from wellcometrust/grants_tagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 815 Bytes
/
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
from setuptools import setup, find_packages
import os
from grants_tagger.__version__ import __version__
setup(
name="grants-tagger",
author="Nick Sorros",
description="A machine learning model to tag grants",
packages=find_packages(),
version=__version__,
entry_points={"console_scripts": "grants_tagger=grants_tagger.__main__:app"},
install_requires=[
"pandas",
"xlrd",
"scikit-learn==0.23.2",
"matplotlib",
"wellcomeml[tensorflow,core,transformers,torch]==2.0.3",
"docutils==0.15",
"scipy==1.4.1",
"wasabi",
"typer",
"tqdm",
"streamlit",
"requests",
"pygtrie==2.3.3",
"openpyxl",
],
tests_require=["pytest", "tox"],
)