forked from facebookresearch/DrQA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (23 loc) · 758 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
#!/usr/bin/env python3
# Copyright 2017-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
from setuptools import setup, find_packages
with open('README.md', encoding='utf8') as f:
readme = f.read()
with open('LICENSE', encoding='utf8') as f:
license = f.read()
with open('requirements.txt', encoding='utf8') as f:
reqs = f.read()
setup(
name='drqa_ext',
version='0.1.0',
description='Reading Wikipedia to Answer Open-Domain Questions',
long_description=readme,
license=license,
python_requires='>=3.5',
packages=find_packages(exclude=('data')),
install_requires=reqs.strip().split('\n'),
)