-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpyproject.toml
65 lines (60 loc) · 1.82 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
60
61
62
63
64
65
[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.15",
"matplotlib ~= 3.10",
"pint >= 0.23, <1.0",
"pvlib >= 0.10, <1.0",
"nrel-pysam >= 5.1, <7.0",
"psychrolib ~= 2.5",
"numba ~= 0.61", # required for psychrolib
"xmltodict >= 0.13, <1.0",
"pyarrow >= 15.0",
"fastparquet >= 2024.0",
"rainflow ~= 3.2",
"pytz ~= 2024.1",
"python-dateutil ~= 2.9",
"click ~= 8.1",
"boto3 ~= 1.36",
]
requires-python = ">=3.9, <3.13"
authors = [
{ name="Jeff Maguire", email="[email protected]" },
{ name="Michael Blonsky", email="[email protected]" },
]
description = "An energy modeling tool designed to model residential end-use 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/"
Tutorial = "https://colab.research.google.com/github/NREL/OCHRE/blob/main/notebook/user_tutorial.ipynb"
Repository = "https://github.com/NREL/OCHRE.git"
Issues = "https://github.com/NREL/OCHRE/issues"
Changelog = "https://github.com/NREL/OCHRE/blob/main/changelog.md"
[project.scripts]
ochre = "ochre:cli"
ochre-gui-basic = "ochre:gui_basic"
ochre-gui-detailed = "ochre:gui_detailed"
[tool.hatch.version]
path = "ochre/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["ochre"]