-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpyproject.toml
More file actions
137 lines (128 loc) · 3.43 KB
/
pyproject.toml
File metadata and controls
137 lines (128 loc) · 3.43 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "hopp"
dynamic = ["version"]
authors = [{name = "NREL", email = "[email protected]"}]
readme = {file = "README.md", content-type = "text/markdown"}
description = "Hybrid Systems Optimization and Performance Platform."
requires-python = ">=3.11"
license = {file = "LICENSE"}
dependencies = [
"Cython",
"NREL-PySAM>=7.0.0",
"Pillow",
"Pyomo>=6.1.2",
"fastkml",
"floris==4.3",
"future",
"global_land_mask",
"lcoe",
"lxml",
"matplotlib",
"multiprocessing-on-dill",
"numpy",
"numpy-financial",
"pandas>=2.0.3",
"pint",
"pvmismatch",
"pyDOE2",
"pyproj",
"pysolar",
"python-dotenv",
"python-rapidjson",
"pytz",
"rainflow",
"requests",
"scikit-learn",
"scikit-optimize",
"scipy",
"shapely>=2",
"setuptools",
"timezonefinder==6.5.9",
"openpyxl",
"attrs",
"utm",
"pyyaml-include",
"profast",
"NREL-rex",
"turbine-models>=0.1.0",
]
keywords = [
"python3",
"hybrid-energy",
"wind-energy",
"solar-energy",
"layout-optimization",
]
classifiers = [ # https://pypi.org/classifiers/
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
source = "https://github.com/NREL/HOPP"
documentation = "https://hopp.readthedocs.io/"
issues = "https://github.com/NREL/HOPP/issues"
changelog = "https://github.com/NREL/HOPP/blob/main/RELEASE.md"
[project.optional-dependencies]
develop = [
"pytest",
"pytest-subtests",
"pytest-dependency",
"responses",
"jupyter-book<2",
"sphinxcontrib-napoleon",
]
examples = ["jupyterlab"]
all = ["hopp[develop,examples]"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = [
"hopp",
"hopp/hydrogen/h2_storage/pressure_vessel/compressed_gas_storage_model_20221021/Tankinator.xlsx",
"hydrogen/h2_transport/data_tables/*.csv",
"tools/analysis/bos/BOSLookup.csv",
"simulation/technologies/layout/flicker_data/*shadow.txt",
"simulation/technologies/layout/flicker_data/*flicker.txt",
"simulation/technologies/csp/pySSC_daotk/libs/*",
"simulation/technologies/csp/pySSC_daotk/tower_data/*",
"simulation/technologies/csp/pySSC_daotk/trough_data/*",
"simulation/technologies/dispatch/cbc_solver/cbc-win64/*",
"simulation/resource_files/*",
"simulation/resource_files/*/*",
]
[tool.setuptools.dynamic]
version = {attr = "hopp.__version__"}
[tool.coverage.report]
exclude_lines = ["# pragma: no cover"]
[tool.coverage.run]
# Coverage.py configuration file
# https://coverage.readthedocs.io/en/latest/config.html
branch = true
source = ["hopp/*"]
omit = [
"setup.py",
"tests/*"
]
[tool.pytest.ini_options]
python_files = [
"tests/*.py",
]
testpaths = [
"test/hopp/*.py",
"test/greenheart/*.py",
]