0
0
mirror of https://github.com/MIDORIBIN/langchain-gpt4free.git synced 2025-01-26 17:11:04 +03:00
langchain-gpt4free/setup.py
2023-10-24 23:26:43 +07:00

25 lines
809 B
Python

from setuptools import setup, find_packages
def load_requirements(filename):
with open(filename, 'r') as file:
return file.read().splitlines()
setup(
name="langchain_g4f",
version="0.1",
packages=find_packages(),
description="LangChain gpt4free is an open-source project that assists in building applications using LLM (Large Language Models) and provides free access to GPT4/3.5.",
author="Alexander",
author_email="alexandkorataev@gmain.com",
url="https://github.com/AlexanderKorataev/langchain-gpt4free",
license="MIT License",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=load_requirements("requirements.txt"),
)