-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (63 loc) · 1.64 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "h2ss"
version = "2024.09.0"
requires-python = ">= 3.11"
dependencies = [
"dask",
"geocube",
"netcdf4",
"pooch",
"pyfluids",
]
authors = [
{name = "Nithiya Streethran", email = "[email protected]"},
]
readme = "README.md"
description = "Optimising production and long-term bulk storage of hydrogen from offshore wind in salt caverns in the Irish Sea"
keywords = ["green hydrogen", "renewable energy", "ireland", "offshore wind", "energy storage", "geological storage", "salt caverns"]
classifiers = [
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: GIS",
]
[project.optional-dependencies]
docs = [
"myst-nb",
"pydata-sphinx-theme",
]
notebooks = [
"cartopy",
"contextily",
"folium",
"jupyterlab",
"mapclassify",
"matplotlib-scalebar",
"seaborn",
"statsmodels",
]
test = [
"black[jupyter]",
"flake8",
"pylint",
"pytest-cov",
]
[tool.setuptools.packages.find]
where = ["h2ss"]
[project.urls]
Documentation = "https://wind-to-hydrogen-toolkit.github.io/hydrogen-salt-storage"
Repository = "https://github.com/wind-to-hydrogen-toolkit/hydrogen-salt-storage.git"
Issues = "https://github.com/wind-to-hydrogen-toolkit/hydrogen-salt-storage/issues"
[tool.black]
line-length = 79
[tool.pyfluids]
units_system = "SI"
[tool.coverage.report]
show_missing = true