-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 797 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 797 Bytes
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pypsa-validation-processing"
version = "0.1.0"
description = "Processing pypsa output to IAMC-Variables for validation workflow"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "Max Nutz", email = "max.nutz@boku.ac.at" }
]
dependencies = [
"pyyaml",
"pandas",
"pypsa",
"pyam-iamc",
"nomenclature-iamc",
]
[project.urls]
Homepage = "https://github.com/maxnutz/pypsa_validation_processing"
[project.scripts]
pypsa-validation-processing = "pypsa_validation_processing.workflow:main"
[tool.setuptools.packages.find]
include = ["pypsa_validation_processing*"]
[tool.setuptools.package-data]
pypsa_validation_processing = ["configs/*.yaml"]