Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Split google and langchain, etc into optional packages #163

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 30 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,42 @@
#!/usr/bin/env python

from distutils.core import setup

from setuptools import find_packages, setup

from setuptools import setup

setup(
name="Log10",
version="0.8.6",
description="Log10 LLM data management",
@@ -12,13 +11,35 @@
author="Log10 team",
author_email="[email protected]",
url="",
packages=find_packages(),
packages=[
"log10",
],
install_requires=[
"openai",
"python-dotenv",
"openai<2",
"anthropic<1",
"requests>=2.31.0",
"python-dotenv>=1.0.0",
"backoff>=2.2.1",
"pandas>=2",
],
extras_require={
"bigquery": ["google-cloud-bigquery"],
"dev": ["chromadb"],
"autofeedback_icl": ["magentic>=0.17.0; python_version >= '3.10'"],
"litellm": ["litellm>=1.34.18"],
"langchain": ["langchain<0.2.0"],
"gemini": ["google-cloud-aiplatform>=1.44.0"],
"mistralai": ["mistralai>=0.1.5"],
"together": ["together>=0.2.7"],
"mosaicml": ["mosaicml-cli>=0.5.30"],
"google-generativeai": ["google-generativeai>=0.5.2"],
"bigquery": ["google-cloud-bigquery>=3.11.4"],
"dev": [
"build>=0.10.0",
"pytest>=8.0.0",
"requests-mock>=1.11.0",
"respx>=0.20.2",
"ruff>=0.3.2",
"pytest-asyncio>=0.23.6",
"chromadb"
],
},
)
)
Loading