-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpyproject.toml
50 lines (45 loc) · 1 KB
/
pyproject.toml
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
[tool.poetry]
name = "exa-py"
version = "1.12.1"
description = "Python SDK for Exa API."
authors = ["Exa AI <hello@exa.ai>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.32.3"
typing-extensions = "^4.12.2"
openai = "^1.48"
pydantic = "^2.10.6"
pytest-mock = "^3.14.0"
httpx = "^0.28.1"
[tool.poetry.group.dev.dependencies]
python-dotenv = "^1.0.1"
setuptools = "^74.0.0"
docutils = "^0.21.2"
twine = "^5.1.1"
datamodel-code-generator = "^0.28.4"
pytest = "^8.3.5"
pytest-cov = "^6.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[virtualenvs]
in-project = true
[project]
name = "exa-py"
version = "1.12.1"
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",
"pytest-mock>=3.14.0",
"httpx>=0.28.1",
]