11 lines
342 B
Python
11 lines
342 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="packetflow",
|
|
version="0.0.0",
|
|
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/",
|
|
) |