forked from facebookresearch/LAMA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
19 lines (18 loc) · 784 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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
requirements = ['Cython==0.29.2', 'numpy==1.15.1', 'torch==1.0.1', 'pytorch-pretrained-bert==0.6.1', 'allennlp==0.7.1', 'spacy==2.0.17', 'tqdm==4.26.0', 'termcolor==1.1.0', 'pandas==0.23.4', 'fairseq==0.6.1', 'scipy==1.3.2']
setup(
name = 'LAMA',
version = '0.1.2',
url = 'https://github.com/fairinternal/LAMA',
author = 'Fabio Petroni & Facebook AI colleagues',
author_email = '[email protected]',
description = 'LAMA: LAnguage Model Analysis',
packages = find_packages(),
install_requires=requirements,
)