File size: 689 Bytes
49b9363 | 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 | # Copyright (c) Meta Platforms, Inc. and 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
NAME = "vjepa2"
VERSION = "0.0.1"
DESCRIPTION = "PyTorch code and models for V-JEPA 2."
URL = "https://github.com/facebookresearch/vjepa2"
def get_requirements():
with open("./requirements.txt") as reqsf:
reqs = reqsf.readlines()
return reqs
if __name__ == "__main__":
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
url=URL,
python_requires=">=3.11",
install_requires=get_requirements(),
)
|