forked from cdqa-suite/cdQA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (17 loc) · 728 Bytes
/
setup.py
File metadata and controls
21 lines (17 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import os
from setuptools import setup, find_packages
def read(file):
return open(os.path.join(os.path.dirname(__file__), file)).read()
setup(
name="cdqa",
version="1.3.9",
author="Félix MIKAELIAN, André FARIAS, Matyas AMROUCHE, Olivier SANS, Théo NAZON",
description="An End-To-End Closed Domain Question Answering System",
long_description=read("README.md"),
long_description_content_type="text/markdown",
keywords="reading comprehension question answering deep learning natural language processing information retrieval bert",
license="Apache-2.0",
url="https://github.com/cdqa-suite/cdQA",
packages=find_packages(),
install_requires=read("requirements.txt").split(),
)