ChainForge/setup.py

52 lines
1.5 KiB
Python
Raw Normal View History

from setuptools import setup, find_packages
2023-05-23 15:11:05 -04:00
def readme():
with open('README.md', encoding='utf-8') as f:
2023-05-23 15:11:05 -04:00
return f.read()
setup(
name="chainforge",
2025-03-02 10:44:48 -05:00
version="0.3.4.2",
packages=find_packages(),
author="Ian Arawjo",
description="A Visual Programming Environment for Prompt Engineering",
2023-05-23 15:11:05 -04:00
long_description=readme(),
long_description_content_type="text/markdown",
keywords="prompt engineering LLM response evaluation",
2023-05-23 15:11:05 -04:00
license="MIT",
url="https://github.com/ianarawjo/ChainForge/",
install_requires=[
# Package dependencies
2023-05-23 14:29:44 -04:00
"flask>=2.2.3",
"flask[async]",
"flask_cors",
"requests",
2025-03-02 10:40:18 -05:00
"platformdirs",
"urllib3==1.26.6",
"openai",
"anthropic",
"google-generativeai",
"dalaipy>=2.0.2",
"mistune>=2.0", # for LLM response markdown parsing
],
entry_points={
"console_scripts": [
"chainforge = chainforge.app:main",
],
},
classifiers=[
# Package classifiers
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
2023-05-22 13:19:46 -04:00
python_requires=">=3.8",
include_package_data=True,
)