mirror of
https://github.com/Hopiu/llm.git
synced 2026-03-16 20:50:25 +00:00
Fix for missing package bug
This commit is contained in:
parent
7485e0646e
commit
0f266d6657
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
|
@ -1,4 +1,4 @@
|
|||
from setuptools import setup
|
||||
from setuptools import setup, find_packages
|
||||
import os
|
||||
|
||||
VERSION = "0.4.1"
|
||||
|
|
@ -27,7 +27,7 @@ setup(
|
|||
},
|
||||
license="Apache License, Version 2.0",
|
||||
version=VERSION,
|
||||
packages=["llm"],
|
||||
packages=find_packages(),
|
||||
entry_points="""
|
||||
[console_scripts]
|
||||
llm=llm.cli:cli
|
||||
|
|
|
|||
Loading…
Reference in a new issue