mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-04 12:07:34 +00:00
rename toolchain/ --> llama_toolchain/
This commit is contained in:
parent
d95f5f863d
commit
f9111652ef
73 changed files with 36 additions and 37 deletions
9
setup.py
9
setup.py
|
@ -1,4 +1,4 @@
|
|||
from setuptools import setup
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
|
||||
# Function to read the requirements.txt file
|
||||
|
@ -16,15 +16,14 @@ setup(
|
|||
description="Llama toolchain",
|
||||
entry_points={
|
||||
"console_scripts": [
|
||||
'llama = toolchain.cli.llama:main'
|
||||
'llama = llama_toolchain.cli.llama:main'
|
||||
]
|
||||
},
|
||||
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=[
|
||||
],
|
||||
packages=find_packages(),
|
||||
classifiers=[],
|
||||
python_requires=">=3.10",
|
||||
install_requires=read_requirements(),
|
||||
include_package_data=True
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue