update steup.py
This commit is contained in:
parent
03a2cf4414
commit
f8ba9cc877
|
|
@ -73,5 +73,4 @@ htmlcov/
|
||||||
|
|
||||||
|
|
||||||
test.ipynb
|
test.ipynb
|
||||||
setup.py
|
|
||||||
.pytest_cache/
|
.pytest_cache/
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name="pocketflow",
|
||||||
|
version="0.0.1",
|
||||||
|
packages=find_packages(),
|
||||||
|
author="Zachary Huang",
|
||||||
|
author_email="zh2408@columbia.edu",
|
||||||
|
description="Minimalist LLM Framework in 100 Lines. Enable LLMs to Program Themselves.",
|
||||||
|
url="https://github.com/miniLLMFlow/PocketFlow/",
|
||||||
|
)
|
||||||
Loading…
Reference in New Issue