-
Notifications
You must be signed in to change notification settings - Fork 50
/
setup.py
33 lines (31 loc) · 887 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
29
30
31
32
33
#!/usr/bin/env python3
# Copyright (c) Meta Platforms, Inc. and affiliates. All Rights Reserved.
from setuptools import find_packages, setup
setup(
name="ego4d",
version="1.7.3",
author="FAIR",
author_email="[email protected]",
description="Ego4D Dataset CLI",
url="https://github.com/facebookresearch/Ego4d/",
install_requires=[
"boto3",
"tqdm",
"regex",
"dataclasses_json",
"iopath",
],
tests_require=[
"pytest",
"moto",
],
packages=find_packages(exclude=("tests", "tests.*")),
entry_points={
"console_scripts": [
"ego4d=ego4d.cli.cli:main",
"egoexo=ego4d.egoexo.download.cli:main",
"egoexo_internal=ego4d.internal.download.cli:internal_main",
"ego4d_validation = ego4d.internal.validation.cli:main",
],
},
)