-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 1.13 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
[build-system]
requires = ["setuptools>=64.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "energydatamodel"
version = "0.2.0"
authors = [
{ name = "rebase.energy" }
]
description = "Data model for energy modelling."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.12"
dependencies = [
"geopandas>=1.0.1",
"pandas>=2.3.0",
"pvlib>=0.12.0",
"shapely>=2.0.7",
"timedatamodel>=0.3.0",
"tzdata; sys_platform == 'win32'",
"uuid6>=2024.1",
]
[project.urls]
homepage = "https://energydatamodel.org"
repository = "https://github.com/rebase-energy/EnergyDataModel"
documentation = "https://docs.energydatamodel.org/en/latest"
[project.optional-dependencies]
docs = [
"sphinx>=7.4",
"sphinx-autodoc-typehints>=2.0.1",
"sphinx-rtd-theme>=3.0.2",
"nbsphinx>=0.9",
"docutils>=0.20",
"ipython>=8.0", # provides the 'ipython3' Pygments lexer used by quickstart.ipynb
]
[tool.setuptools]
packages = ["energydatamodel"]
[dependency-groups]
dev = [
"pytest>=9.0.3",
"ipykernel>=6.29.5",
"ipywidgets>=8.1.5",
"jupyter>=1.1.1",
"nbconvert>=7.16.0",
]