-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (70 loc) · 1.71 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (70 loc) · 1.71 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
[tool.poetry]
name = "constrain"
version = "0.8.0"
description = "ConStrain is a data-driven knowledge-integrated framework that automatically verifies that building system controls function as intended."
authors = [
"Lei, Xuechen <xuechen.lei@pnnl.gov>",
"Chen, Yan <yan.chen@pnnl.gov>",
"Lerond, Jeremy <jeremy.lerond@pnnl.gov>",
"Jung, Yun Joon <yunjoon.jung@pnnl.gov>",
"Pacific Northwest National Laboratory"
]
readme = "README.md"
homepage = "https://github.com/pnnl/ConStrain"
repository = "https://github.com/pnnl/ConStrain"
keywords = [
"data",
"simulation",
"verification",
"building",
"bms",
"hvac",
"commissioning"
]
[tool.poetry.scripts]
constrain = "constrain.cli:cli"
[tool.poetry.group.dev]
optional = true
[tool.poetry.dependencies]
python = "^3.10"
numpy = "*"
matplotlib = "^3.8.2"
seaborn = "^0.13.0"
pandas = "^2.1.3"
eppy = "^0.5.63"
fuzzywuzzy = "^0.18.0"
scikit-learn = "^1.3.2"
scipy = "^1.11.4"
tqdm = "^4.66.1"
uuid = "^1.30"
brickschema = "0.7.1"
pydash = "^7.0.6"
pyyaml = "^6.0.1"
pyqt6 = "^6.6.1"
click = "^8.1.7"
jsonschema = "^4.21.1"
python-levenshtein = "^0.27.1"
setuptools = "^69.0.0,<70.0.0"
fastapi = "*"
uvicorn = "*"
jinja2 = "*"
python-multipart = "*"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.6.0"
pytest = "^7.4.3"
black = "24.3.0"
streamlit = "^1.54.0"
httpx = "^0.27.0"
sphinx = "4.2.0"
sphinxcontrib-applehelp = "1.0.4"
sphinxcontrib-devhelp = "1.0.2"
sphinxcontrib-htmlhelp = "2.0.1"
sphinxcontrib-qthelp = "1.0.3"
sphinxcontrib-serializinghtml = "1.1.5"
sphinx-rtd-theme = "1.3.0"
jupytext = "^1.18.1"
[tool.pytest.ini_options]
pythonpath = ["."]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"