From 88b3b9e5294f77cfd17a173e2e7bf97e9f4e0f49 Mon Sep 17 00:00:00 2001 From: zachary62 Date: Fri, 14 Mar 2025 20:46:38 -0400 Subject: [PATCH] remove setup.py --- .gitignore | 3 ++- setup.py | 11 ----------- 2 files changed, 2 insertions(+), 12 deletions(-) delete mode 100644 setup.py diff --git a/.gitignore b/.gitignore index 0e74f9e..1517a6c 100644 --- a/.gitignore +++ b/.gitignore @@ -6,7 +6,7 @@ .Trashes ehthumbs.db Thumbs.db -.setup.py + # IDE specific files .idea/ @@ -73,4 +73,5 @@ htmlcov/ test.ipynb +setup.py .pytest_cache/ \ No newline at end of file diff --git a/setup.py b/setup.py deleted file mode 100644 index 6526f78..0000000 --- a/setup.py +++ /dev/null @@ -1,11 +0,0 @@ -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