-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 954 Bytes
/
Copy pathpyproject.toml
File metadata and controls
47 lines (40 loc) · 954 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
37
38
39
40
41
42
43
44
45
46
47
[build-system]
requires = ["setuptools>=75"]
build-backend = "setuptools.build_meta"
[project]
name = "labledger"
version = "0.1.0"
description = "Persistent memory foundations for autonomous laboratory operations"
readme = "README.md"
requires-python = ">=3.12"
license = { file = "LICENSE" }
authors = [{ name = "LabLedger contributors" }]
dependencies = [
"boto3>=1.40,<2",
"botocore[crt]>=1.40,<2",
"psycopg[binary]>=3.2,<4",
]
[project.optional-dependencies]
dev = [
"mypy>=1.14,<2",
"pytest>=8.3,<9",
"ruff>=0.9,<1",
]
[tool.setuptools.packages.find]
include = ["backend*"]
[tool.pytest.ini_options]
addopts = "-q"
pythonpath = ["."]
testpaths = ["tests"]
markers = [
"integration: requires a configured CockroachDB connection",
]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["B", "E", "F", "I", "RUF", "SIM", "UP"]
[tool.mypy]
python_version = "3.12"
strict = true
files = ["backend/app"]