forked from CogStack/MedCAT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (41 loc) · 1.44 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
import setuptools
from setuptools.command.install import install
from setuptools.command.develop import develop
from setuptools.command.egg_info import egg_info
with open("./README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="medcat",
version="1.1.01",
author="w-is-h",
author_email="w.kraljevic@gmail.com",
description="Concept annotation tool for Electronic Health Records",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/CogStack/MedCAT",
packages=['medcat', 'medcat.utils', 'medcat.preprocessing', 'medcat.cogstack', 'medcat.ner', 'medcat.linking', 'medcat.datasets', 'medcat.deprecated'],
install_requires=[
'numpy<1.21.0,>=1.19.0',
'pandas~=1.0',
'gensim~=3.8',
'spacy<3.1.0,>=3.0.1',
'scipy~=1.5',
'transformers~=4.5.1',
'torch~=1.8.1',
'tqdm<4.50.0,>=4.27',
'sklearn~=0.0',
'elasticsearch~=7.10',
'dill~=0.3.3',
'datasets~=1.6.0',
'jsonpickle~=2.0.0',
],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)