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.
26 lines
871 B
26 lines
871 B
from setuptools import setup, find_packages |
|
|
|
setup( |
|
name="llm_client", # Changed from "_llm" to "llm_client" |
|
version="0.1.0", |
|
packages=find_packages(), |
|
install_requires=[ |
|
"requests", |
|
"tiktoken", |
|
"ollama", |
|
"env_manager @ git+https://github.com/lasseedfast/env_manager.git", |
|
"colorprinter @ git+https://github.com/lasseedfast/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://github.com/lasseedfast/_llm", |
|
classifiers=[ |
|
"Programming Language :: Python :: 3", |
|
"License :: OSI Approved :: MIT License", |
|
"Operating System :: OS Independent", |
|
], |
|
python_requires=">=3.8", |
|
) |