-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
57 lines (51 loc) · 1.43 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
[project]
name = "aleph-alpha-client"
version = "11.5.1"
description = "python client to interact with Aleph Alpha api endpoints"
authors = [{ name = "Aleph Alpha", email = "support@aleph-alpha.com" }]
requires-python = ">=3.10,<3.14"
readme = "README.md"
license = "MIT"
dependencies = [
"requests>=2.28",
"urllib3>=1.26",
"aiohttp>=3.10.2",
"aiodns>=3.2.0",
"aiohttp-retry>=2.8.3",
"tokenizers>=0.13.2",
"typing-extensions>=4.5.0",
"Pillow>=9.2.0",
"tqdm>=4.62.0",
"python-liquid>=1.9.4,!=2.0.2",
"packaging>=23.2",
"pydantic"
]
[project.urls]
Homepage = "https://github.com/Aleph-Alpha/aleph-alpha-client"
[dependency-groups]
dev = [
"pytest>=8.3.4,<9",
"pytest-cov>=6.0.0,<7",
"pytest-dotenv>=0.5.2,<0.6",
"pytest-httpserver>=1.1.1,<2",
"pytest-aiohttp>=1.1.0,<2",
"mypy>=1.15.0,<2",
"pre-commit>=4.1.0,<5",
"ruff>=0.9.7,<0.12.0",
"types-requests>=2.32.0.20241016,<3",
"types-pillow>=10.2.0.20240822,<11",
"types-tqdm>=4.67.0.20241221,<5",
"nbconvert>=7.16.6,<8",
"ipykernel>=6.29.5,<7",
"pytest-recording>=0.13.4,<0.14",
]
docs = ["sphinx>=6.1.3", "sphinx-rtd-theme>=1.2.1"]
[tool.hatch.build.targets.sdist]
include = ["aleph_alpha_client"]
[tool.hatch.build.targets.wheel]
include = ["aleph_alpha_client"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"