remove setup.py

This commit is contained in:
zachary62 2025-03-14 20:46:38 -04:00
parent b53230c230
commit 88b3b9e529
2 changed files with 2 additions and 12 deletions

3
.gitignore vendored
View File

@ -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/

View File

@ -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/",
)