-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 745 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (32 loc) · 745 Bytes
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
[project]
name = "diffbot-kg"
version = "0.2.4"
description = "Python client for the Diffbot Knowledge Graph API."
authors = [{ name = "Brendan C. Smith" }]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"aiohttp>=3.9.3",
"aiolimiter>=1.1.0",
"tenacity>=8.2.3",
"yarl>=1.9.4",
]
[dependency-groups]
dev = [
"pytest>=8.0.1",
"pytest-asyncio>=0.23.5",
"pytest-mock>=3.12.0",
"ruff>=0.2.2",
"python-dotenv>=1.0.1",
"pytest-vcr>=1.0.2",
"pytest-rerunfailures>=14",
]
[tool.pytest.ini_options]
pythonpath = "src"
addopts = ["--import-mode=importlib"]
[tool.hatch.build.targets.sdist]
exclude = [".trunk"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"