2025-03-14 21:57:50 -04:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
name="pocketflow",
|
2025-07-27 17:58:15 -07:00
|
|
|
version="0.0.3",
|
2025-03-14 21:57:50 -04:00
|
|
|
packages=find_packages(),
|
|
|
|
|
author="Zachary Huang",
|
|
|
|
|
author_email="zh2408@columbia.edu",
|
2025-04-11 15:28:19 -04:00
|
|
|
description="Pocket Flow: 100-line LLM framework. Let Agents build Agents!",
|
|
|
|
|
url="https://github.com/The-Pocket/PocketFlow",
|
2025-03-14 21:57:50 -04:00
|
|
|
)
|