-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (78 loc) · 1.83 KB
/
Copy pathpyproject.toml
File metadata and controls
89 lines (78 loc) · 1.83 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "comcheck_api"
version = "1.0.1"
description = "COMcheck API Python Package"
readme = "README.md"
requires-python = ">=3.12"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
authors = [
{ name = "Yanyan Zhu", email = "yanyan.zhu@pnnl.gov" },
]
maintainers = [
{ name = "Yanyan Zhu", email = "yanyan.zhu@pnnl.gov" },
{ name = "Weili Xu", email = "weili.xu@pnnl.gov" },
]
keywords = [
"comcheck",
"compliance",
"simulation",
"energy code",
"ashrae 90.1",
"IECC",
]
dependencies = [
"httpx>=0.27.0",
"jsonschema>=4.23.0",
"pydantic>=2.12.5",
"python-dotenv>=1.0.0",
"types-jsonschema>=4.23.0",
]
[project.urls]
Homepage = "https://pnnl.github.io/comcheckweb-api-python/"
Documentation = "https://pnnl.github.io/comcheckweb-api-python/"
Repository = "https://github.com/pnnl/comcheckweb-api-python"
[project.scripts]
comcheck-api = "comcheck_api.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["comcheck_api"]
include = [
"comcheck_api/ai/skill/**/*.md",
"comcheck_api/ai/skill/**/*.py",
]
[tool.hatch.build.targets.wheel.force-include]
"DISCLAIMER.md" = "comcheck_api/DISCLAIMER.md"
[tool.uv.workspace]
members = []
[tool.uv.sources]
[dependency-groups]
dev = [
"black>=26.1.0",
"datamodel-code-generator>=0.54.1",
"mypy>=1.19.1",
"pre-commit>=4.5.1",
"pytest>=9.0.2",
]
docs = [
"mkdocs>=1.6.0",
"mkdocs-material>=9.5.0",
"mkdocstrings[python]>=0.27.0",
]
[tool.mypy]
plugins = [
"pydantic.mypy"
]
follow_imports = "silent"
ignore_missing_imports = true
disable_error_code = ["misc"]
exclude = [
"^comcheck_api/types/core_types\\.py$"
]
[tool.pydantic-mypy]
init_forbid_extra = true
init_typed = true
warn_required_dynamic_aliases = true
warn_untyped_fields = true