-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
59 lines (44 loc) · 1.15 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
51
52
53
54
55
56
57
58
59
[tool.poetry]
name = "qref"
version = "0.9.0"
description = "Quantum Resource Estimation Format"
authors = ["PsiQuantum, Corp."]
license = "Apache 2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
pydantic = "^2.0"
graphviz = "^0.20.3"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
mypy = "^1.9.0"
flake8 = "^7.0.0"
black = "^24.2.0"
pyyaml = "^6"
jsonschema = "^4"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.3"
mkdocs-link-marker = "^0.1.3"
mkdocs-material = "^9.5.15"
mkdocs-open-in-new-tab = "^1.0.3"
mkdocstrings = {version = ">=0.26.1", extras = ["python"]}
mike = "^2.0.0"
[tool.poetry.scripts]
qref-render = "qref.experimental.rendering:render_entry_point"
[tool.poetry-dynamic-versioning]
enable = true
pattern = "default-unprefixed"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.black]
line-length = 120
target-version = ['py39']
[[tool.mypy.overrides]]
module = "graphviz.*"
ignore_missing_imports = true
[tool.pytest.ini_options]
markers = [
"invalid_schema_examples",
"invalid_pydantic_examples"
]