You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
901 B
31 lines
901 B
""" |
|
llm_client package setuptools configuration. |
|
""" |
|
|
|
from setuptools import setup, find_packages |
|
|
|
setup( |
|
name="llm_client", |
|
version="0.1.0", |
|
packages=["_llm"], |
|
py_modules=["llm_client"], |
|
install_requires=[ |
|
"requests", |
|
"tiktoken", |
|
"ollama", |
|
"env_manager @ git+https://git.edfast.se/lasse/env_manager.git", |
|
"colorprinter @ git+https://git.edfast.se/lasse/colorprinter.git", |
|
], |
|
author="Lasse Edfast", |
|
author_email="lasse@edfast.se", |
|
description="A tool for interacting with LLM models", |
|
long_description=open("README.md").read(), |
|
long_description_content_type="text/markdown", |
|
url="https://git.edfast.se/lasse/_llm", |
|
classifiers=[ |
|
"Programming Language :: Python :: 3", |
|
"License :: OSI Approved :: MIT License", |
|
"Operating System :: OS Independent", |
|
], |
|
python_requires=">=3.8", |
|
) |