-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 899 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 899 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
28
29
30
31
32
from setuptools import find_packages
from distutils.core import setup
with open("README.md", 'r') as f:
long_description = f.read()
setup(
name='BRAT_AL_TOOL',
version='1.0',
author='Marcel Hiltner',
author_email='marcel.hiltner@fau.de',
url="https://github.com/marcel8168/nlp-project",
packages=find_packages(),
description="Toolset for active learning based control of medical free-text annotations",
long_description=long_description,
install_requires=[
'datasets==2.12.0',
'evaluate==0.4.0',
'modAL-python==0.4.2.1',
'nltk==3.8.1',
'numpy==1.23.5',
'pandas==2.0.1',
'scikit_learn==1.2.2',
'setuptools==67.8.0',
'torch==2.0.1',
'transformers==4.29.1',
'seqeval==1.2.2',
'accelerate==0.20.3',
'pyautogui==0.9.54',
'matplotlib==3.7.2'
]
)