-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (63 loc) · 1.9 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (63 loc) · 1.9 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
[build-system]
requires = ["uv_build>=0.11.0,<0.12"]
build-backend = "uv_build"
[project]
name = "ghedesigner"
version = "2.2.0"
description = "A ground heat exchanger design tool with the capability to select and size flexibly configured borehole fields that are customized for specific building and property constraints."
readme = "README.md"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
authors = [{ name = "Jeffrey D. Spitler", email = "spitler@okstate.edu" }]
requires-python = ">=3.11"
dependencies = [
"bhresist>=0.4.0",
"click>=8.3.1",
"jsonschema>=4.26.0",
"numpy<2.4",
"pygfunction>=2.3.1",
"scipy>=1.15.3",
"secondarycoolantprops>=1.5",
]
repository = "https://github.com/BETSRG/GHEDesigner"
documentation = "https://betsrg.github.io/GHEDesigner/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
]
[project.scripts]
ghedesigner = "ghedesigner.main:run_manager_from_cli"
[dependency-groups]
app = [
"dash>=4.0.0",
"pandas<=3.0.0",
"plotly>=6.5.0"
]
dev = [
"pre-commit>=4.5.1",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"pytest-xdist>=3.8.0",
"recursive-diff>=1.3.0",
]
docs = [
"mkdocs-material>=9.7.1",
"mkdocs-schema-reader>=0.11.1",
"mkdocstrings-python>=2.0.1",
]
[tool.pytest.ini_options]
testpaths = "ghedesigner/tests"
addopts = ["--cov=ghedesigner", "--cov-report=html"]
[tool.uv]
default-groups = ["app", "dev", "docs"]
[tool.uv.build-backend]
module-root = ""
source-exclude = ["ghedesigner/gui", "ghedesigner/tests"]