mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-04 12:07:34 +00:00
added pypi package
This commit is contained in:
parent
b0f3406a08
commit
7c69675b79
4 changed files with 71 additions and 0 deletions
18
setup.py
Normal file
18
setup.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
from setuptools import setup
|
||||
|
||||
setup(
|
||||
name="llama_toolchain",
|
||||
version="0.0.0.1",
|
||||
author="Meta Llama",
|
||||
author_email="rsm@meta.com",
|
||||
description="Llama toolchain",
|
||||
long_description=open("README.md").read(),
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://github.com/meta-llama/llama-toolchain",
|
||||
package_dir={ "llama_toolchain": "toolchain"},
|
||||
classifiers=[
|
||||
],
|
||||
python_requires=">=3.10",
|
||||
install_requires=[],
|
||||
include_package_data=True
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue