-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
57 lines (53 loc) · 1.54 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ochre-nrel"
dynamic = ["version"]
dependencies = [
"numpy ~= 1.26",
"pandas >=1.4, < 3.0",
"scipy ~= 1.11",
"matplotlib ~= 3.8",
"pint ~= 0.23",
"pvlib ~= 0.10.4",
"nrel-pysam ~= 5.1",
"psychrolib ~= 2.5",
"numba ~= 0.59", # required for psychrolib
"xmltodict ~= 0.13.0",
"pyarrow ~= 15.0",
"fastparquet >= 2024.0",
"rainflow ~= 3.2",
"pytz >= 2024.0",
"python-dateutil ~= 2.9",
]
requires-python = ">=3.9"
authors = [
{ name="Jeff Maguire", email="[email protected]" },
{ name="Michael Blonsky", email="[email protected]" },
]
description = "A residential energy modeling tool designed to model flexible loads and DERs"
readme = "README.md"
keywords = [
"building energy modeling",
"demand flexibility",
"residential buildings",
"grid-interactive buildings",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
]
[project.urls]
Homepage = "https://www.nrel.gov/grid/ochre.html"
Documentation = "https://ochre-nrel.readthedocs.io/en/latest/"
Repository = "https://github.com/NREL/OCHRE.git"
Issues = "https://github.com/NREL/OCHRE/issues"
Changelog = "https://github.com/NREL/OCHRE/blob/main/changelog.md"
[tool.hatch.version]
path = "ochre/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["ochre"]