Skip to content
Open
Show file tree
Hide file tree
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
28 changes: 14 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
from setuptools import setup, find_packages

with open('README.md', 'r', encoding='utf-8') as f:
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()

setup(
name='tavily-python',
version='0.7.9',
url='https://github.com/tavily-ai/tavily-python',
author='Tavily AI',
author_email='[email protected]',
description='Python wrapper for the Tavily API',
name="tavily-python",
version="0.7.9",
url="https://github.com/tavily-ai/tavily-python",
author="Tavily AI",
author_email="[email protected]",
description="Python wrapper for the Tavily API",
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(exclude=['tests']),
install_requires=['requests', 'tiktoken>=0.5.1', 'httpx'],
long_description_content_type="text/markdown",
packages=find_packages(exclude=["tests"]),
install_requires=["requests", "tiktoken>=0.5.1", "httpx"],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
python_requires=">=3.6",
)
9 changes: 8 additions & 1 deletion tavily/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
from .async_tavily import AsyncTavilyClient
from .tavily import Client, TavilyClient
from .errors import InvalidAPIKeyError, UsageLimitExceededError, MissingAPIKeyError, BadRequestError
from .hybrid_rag import TavilyHybridClient
from .hybrid_rag import TavilyHybridClient

__all__ = [
"AsyncTavilyClient",
"Client", "TavilyClient",
"InvalidAPIKeyError", "UsageLimitExceededError", "MissingAPIKeyError", "BadRequestError",
"TavilyHybridClient"
]
Loading