-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
28 lines (26 loc) · 888 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="bert_qa",
version="0.1.0",
author="Artit Wangperawong",
author_email="[email protected]",
description="Question-Answering system using state-of-the-art pre-trained language models.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/artitw/BERT_QA",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
keywords='bert nlp text squad data science machine learning',
install_requires=[
"sentencepiece",
'tensorflow>=2.0.0',
'tensorflow-gpu>=2.0.0',
'tensorflow-hub>=0.6.0',
],
)