pocketflow/setup.py

11 lines
328 B
Python

from setuptools import setup, find_packages
setup(
name="pocketflow",
version="0.0.3",
packages=find_packages(),
author="Zachary Huang",
author_email="zh2408@columbia.edu",
description="Pocket Flow: 100-line LLM framework. Let Agents build Agents!",
url="https://github.com/The-Pocket/PocketFlow",
)