forked from facebookresearch/multihop_dense_retrieval
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) · 774 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (25 loc) · 774 Bytes
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
#!/usr/bin/env python
# Copyright (c) Facebook, Inc. and its affiliates.
# 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
import sys
import subprocess
with open('README.md') as f:
readme = f.read()
# with open('LICENSE') as f:
# license = f.read()
with open('requirements.txt') as f:
reqs = f.read()
setup(
name='mdr',
version='0.0.1',
description='Multi-hop dense retrieval for complex open-domain question answering',
long_description='text/markdown',
# license=license,
python_requires='>=3.6',
packages=find_packages(exclude=('data')),
install_requires=reqs.strip().split('\n'),
)