-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
36 lines (33 loc) · 1.08 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
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(name='zshot',
description="Zero and Few shot named entity recognition",
long_description_content_type='text/markdown',
long_description=long_description,
classifiers=[],
keywords='NER Zero-Shot Few-Shot',
author='IBM Research',
author_email='',
url='https://ibm.github.io/zshot',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
"spacy>=3.4.1",
"requests>=2.28",
"tqdm>=4.62.3",
"setuptools>=65.5.1", # Needed to install dynamic packages from source (e.g. Blink)
"prettytable>=3.4",
"torch>=1",
"transformers>=4.20",
"datasets>=2.9.1",
"evaluate>=0.3.0",
"seqeval>=1.2.2",
],
entry_points="""
# -*- Entry points: -*-
""",
)