-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.21 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (52 loc) · 1.21 KB
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
[tool.poetry]
name = "exa-py"
version = "2.13.2" # x-release-please-version
description = "Python SDK for Exa API."
authors = ["Exa AI <hello@exa.ai>"]
readme = "README.md"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.32.3"
typing-extensions = "^4.12.2"
openai = "^1.48"
pydantic = "^2.10.6"
httpx = "^0.28.1"
httpcore = "^1.0.9"
python-dotenv = "^1.0.1"
[tool.poetry.group.dev.dependencies]
setuptools = "^78.1.1"
docutils = "^0.21.2"
twine = "^5.1.1"
datamodel-code-generator = "^0.28.4"
pytest = "^8.4.1"
pytest-cov = "^6.2.1"
pytest-mock = "^3.14.1"
pytest-asyncio = "^1.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project]
name = "exa-py"
version = "2.13.2"
description = "Python SDK for Exa API."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "Exa AI", email = "hello@exa.ai" }]
dependencies = [
"requests>=2.32.3",
"typing-extensions>=4.12.2",
"openai>=1.48",
"pydantic>=2.10.6",
"httpx>=0.28.1",
"httpcore>=1.0.9",
"python-dotenv>=1.0.1",
]
[dependency-groups]
dev = [
"pytest>=8.4.1",
"pytest-asyncio>=1.0.0",
"pytest-cov>=6.2.1",
"pytest-mock>=3.14.1",
]