-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (38 loc) · 1.01 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
[tool.poetry]
name = "lattice"
version = "0.0.0" # Generated from git on CI
description = "A framework for developing data models, including schema development and documentation."
authors = ["Big Ladder Software"]
license = "BSD-3"
readme = "README.md"
keywords = ["data-modeling", "schema", "lattice"]
repository = "https://github.com/bigladder/lattice"
[tool.poetry.dependencies]
python = "^3.10"
jsonschema = "*"
pyyaml = "*"
cbor2 = "*"
Jinja2 = ">=3.1.4"
stringcase = ">=1.2.0"
pygit2 = ">=1.15.1"
mkdocs-material = "*"
markdown-grid-tables = "*"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.1.3"
doit = "*"
pylint = "*"
black = "*"
[tool.poetry.group.extras.dependencies]
pyinstrument = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[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"]