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