2023-02-24 05:20:46 -08:00
|
|
|
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2023-07-18 15:57:25 +00:00
|
|
|
# This software may be used and distributed according to the terms of the Llama 2 Community License Agreement.
|
2023-02-24 05:20:46 -08:00
|
|
|
|
2023-07-18 15:57:25 +00:00
|
|
|
from setuptools import find_packages, setup
|
2023-02-24 05:20:46 -08:00
|
|
|
|
2023-07-18 15:57:25 +00:00
|
|
|
|
|
|
|
|
def get_requirements(path: str):
|
|
|
|
|
return [l.strip() for l in open(path)]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
name="llama",
|
|
|
|
|
version="0.0.1",
|
|
|
|
|
packages=find_packages(),
|
|
|
|
|
install_requires=get_requirements("requirements.txt"),
|
|
|
|
|
)
|