vjxla / setup.py
ckadirt's picture
Add files using upload-large-folder tool
49b9363 verified
raw
history blame contribute delete
689 Bytes
# 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(),
)