update steup.py

This commit is contained in:
zachary62 2025-03-14 21:57:50 -04:00
parent 03a2cf4414
commit f8ba9cc877
2 changed files with 11 additions and 1 deletions

1
.gitignore vendored
View File

@ -73,5 +73,4 @@ htmlcov/
test.ipynb test.ipynb
setup.py
.pytest_cache/ .pytest_cache/

11
setup.py Normal file
View File

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