-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.08 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
[project]
name = "lattice"
version = "0.0.0" # Generated from git on CI
description = "A framework for developing data models, including schema development and documentation."
authors = [{name="Big Ladder Software"}]
#license = "BSD-3"
readme = "README.md"
keywords = ["data-modeling", "schema", "lattice"]
repository = "https://github.com/bigladder/lattice"
requires-python = ">=3.10"
dependencies = [
"jsonschema",
"pyyaml",
"cbor2",
"Jinja2 >=3.1.4",
"stringcase >=1.2.0",
"pygit2 >=1.15.1",
"mkdocs-material",
"markdown-grid-tables",
]
[tool.uv]
dev-dependencies = [
"pytest >= 7.1.3",
"doit",
"pre-commit",
"pylint",
"ruff"
]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "PL", "I001"]
ignore = ["F405", # undefined-local-with-import-star-usage
]
[tool.mypy]
disallow_incomplete_defs = true
no_implicit_optional = true
check_untyped_defs = true
[[tool.mypy.overrides]]
module = "lattice.*"
disable_error_code = ["annotation-unchecked","import"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"