-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.cfg
64 lines (58 loc) · 1.29 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[metadata]
name = portkey-ai
version = attr: portkey_ai.version.VERSION
description = Python client library for the Portkey API
long_description = file: README.md
long_description_content_type = text/markdown
author = Portkey.ai
author_email = [email protected]
url = https://github.com/Portkey-AI/portkey-python-sdk
license_files = LICENSE
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
packages = find:
python_requires = >=3.8
zip_safe = True
include_package_data = True
install_requires =
httpx
typing_extensions>=4.7.1,<5.0
pydantic>=1.10.0
anyio>=3.5.0,<5
distro>=1.7.0,<2
sniffio
cached-property
tqdm>4
types-requests
jiter<1,>=0.4.0
[options.entry_points]
console_scripts =
portkey_ai = portkey_ai._portkey_scripts:main
[options.package_data]
portkey_ai =
py.typed
_vendor/openai/lib/*
_vendor/openai/lib/streaming/*
[options.extras_require]
dev =
mypy>=0.991,<2.0
black==23.7.0
pytest==7.4.2
python-dotenv==1.0.0
ruff==0.0.292
pytest-asyncio==0.23.5
langchain_callback =
langchain-core
llama_index_callback =
llama-index
[mypy]
ignore_missing_imports = true
files = portkey_ai
exclude = portkey_ai/_vendor/*
[options.packages.find]
exclude =
tests/
tests.*