From f8ba9cc877581473d887421851d2ff65b447e5a1 Mon Sep 17 00:00:00 2001 From: zachary62 Date: Fri, 14 Mar 2025 21:57:50 -0400 Subject: [PATCH] update steup.py --- .gitignore | 1 - setup.py | 11 +++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 setup.py diff --git a/.gitignore b/.gitignore index 1517a6c..4c70e7b 100644 --- a/.gitignore +++ b/.gitignore @@ -73,5 +73,4 @@ htmlcov/ test.ipynb -setup.py .pytest_cache/ \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..6526f78 --- /dev/null +++ b/setup.py @@ -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/", +) \ No newline at end of file