-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
130 lines (121 loc) · 2.91 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
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "greenheart"
dynamic = ["version"]
authors = [{name = "NREL", email = "dguittet@nrel.gov"}]
readme = {file = "README.md", content-type = "text/markdown"}
description = "Green Hydrogen Energy and Renewable Technologies"
requires-python = ">=3.9, <3.12"
license = {file = "LICENSE"}
dependencies = [
"Cython",
"NREL-PySAM==4.2.0",
"Pillow",
"Plotly",
"Pyomo>=6.1.2",
"fastkml",
"floris",
"future",
"global_land_mask",
"hybridbosse",
"lcoe",
"lxml",
"matplotlib",
"multiprocessing-on-dill",
"numpy",
"numpy-financial",
"pandas>=2.0.3",
"pint",
"plotly",
"pvmismatch",
"pyDOE2",
"pyproj",
"pysolar",
"python-dotenv",
"python-rapidjson",
"pytz",
"rainflow",
"requests",
"scikit-learn",
"scikit-optimize",
"scipy",
"shapely",
"setuptools",
"timezonefinder",
"urllib3",
"openpyxl",
"attrs",
"utm",
"HOPP>=3.0",
"orbit-nrel>=1.1",
"openmdao[all]",
"ProFAST",
]
keywords = [
"python3",
"hybrid-energy",
"wind-energy",
"solar-energy",
"layout-optimization",
]
classifiers = [ # https://pypi.org/classifiers/
"Development Status :: 4 - Beta",
"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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
source = "https://github.com/NREL/GreenHEART"
# documentation = "https://greenheart.readthedocs.io/"
issues = "https://github.com/NREL/GreenHEART/issues"
changelog = "https://github.com/NREL/GreenHEART/blob/main/CHANGELOG.md"
[project.optional-dependencies]
develop = [
"pytest",
"pytest-subtests",
"responses",
"Plotly",
"jupyter-book",
"sphinxcontrib-napoleon"
]
examples = ["jupyterlab"]
all = ["greenheart[develop,examples]"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = [
"greenheart",
"hydrogen/h2_transport/data_tables/*.csv",
]
[tool.setuptools.dynamic]
version = {attr = "greenheart.__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 = ["greenheart/*"]
omit = [
"setup.py",
"tests/*"
]
[tool.pytest.ini_options]
python_files = [
"tests/*.py",
]
testpaths = [
"test/greenheart/*.py",
]