-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 1.4 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
from io import open
from setuptools import find_packages, setup
setup(
name="multitacred",
version="0.1.0",
author="Leonhard Hennig, Gabriel Kressin, Phuc Tran Truong",
author_email="[email protected]",
description="MultiTACRED - A Multilingual Version of the TAC Relation Extraction Dataset",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
keywords="relation extraction, information extraction, machine translation",
license="MIT",
url="https://github.com/DFKI-NLP/MultiTACRED",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=[
"hydra-core>=1.2.0",
"google-cloud-translate==2.0.1",
"python-dotenv>=0.20.0",
"spacy",
"trankit>=1.1.1",
"transformers[ja]",
"sherlock @ git+https://[email protected]/DFKI-NLP/[email protected]#egg=sherlock",
"pre-commit", # hooks for applying linters on commit
"black>=22.6.0",
"typer>=0.4.2",
],
tests_require=["flake8"],
entry_points={"console_scripts": []},
python_requires=">=3.8",
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)