forked from facebookresearch/EGG
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (16 loc) · 641 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (16 loc) · 641 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright (c) Facebook, Inc. and its affiliates.
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name = 'EGG',
version = '0.1.0',
url = 'https://github.com/facebookresearch/EGG',
author = 'Eugene Kharitonov',
author_email = 'kharitonov@fb.com',
description = 'Emergence of lanGuage in Games (EGG): A toolbox for language games research',
packages = find_packages(),
install_requires=requirements,
)