a | b/src/llama-main/setup.py | ||
---|---|---|---|
1 | # Copyright (c) Meta Platforms, Inc. and affiliates. |
||
2 | # This software may be used and distributed according to the terms of the Llama 2 Community License Agreement. |
||
3 | |||
4 | from setuptools import find_packages, setup |
||
5 | |||
6 | |||
7 | def get_requirements(path: str): |
||
8 | return [l.strip() for l in open(path)] |
||
9 | |||
10 | |||
11 | setup( |
||
12 | name="llama", |
||
13 | version="0.0.1", |
||
14 | packages=find_packages(), |
||
15 | install_requires=get_requirements("requirements.txt"), |
||
16 | ) |