-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 1.01 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
[project]
name = "eventsourcingdb"
version = "1.9.0"
description = "The official Python client SDK for EventSourcingDB."
authors = [{ name = "the native web GmbH", email = "hello@thenativeweb.io" }]
requires-python = ">=3.11, <3.15"
readme = "README.md"
license = "MIT"
dependencies = [
"aiohttp==3.13.3",
"cryptography==46.0.5",
"testcontainers==4.14.1",
]
[dependency-groups]
dev = [
"pytest==9.0.2",
"pytest-timeout==2.4.0",
"pytest-asyncio==1.3.0",
"pytest-cov==7.0.0",
"ruff==0.15.6",
"bandit==1.9.4",
"pyright==1.1.408",
"twine==6.2.0",
"pandas>=2.0.0",
]
pandas = [
"pandas>=2.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.bandit]
exclude_dirs = ["tests", ".venv"]
skips = ["B101"]
[tool.hatch.build.targets.wheel]
packages = ["eventsourcingdb"]
[tool.hatch.build.targets.sdist]
include = ["eventsourcingdb/**/*.py", "eventsourcingdb/py.typed"]
[tool.pytest.ini_options]
timeout = 30
asyncio_default_fixture_loop_scope = "function"