11 lines
329 B
Python
11 lines
329 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="minillmflow",
|
|
version="0.0.3",
|
|
packages=find_packages(),
|
|
author="Zachary Huang",
|
|
author_email="zh2408@columbia.edu",
|
|
description="A Minimalist Framework for LLM Workflows in 100 Lines of Code",
|
|
url="https://github.com/zachary62/miniLLMFlow",
|
|
) |