-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 937 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 937 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
33
34
35
36
37
38
39
[project]
name = "scenariocompass"
description = "Validation and analysis of integrated-assessment scenarios"
authors = [
{name = "Daniel Huppmann", email = "huppmann@iiasa.ac.at"}
]
license = "MIT"
readme = "README.md"
version = "0.0.0"
requires-python = ">=3.11, <3.14"
dependencies = [
"nomenclature-iamc (>=0.29.6)",
"pyam-iamc (>=3.3.0)",
"pandas (>=2.1.1)",
]
dynamic = ["version"]
[project.urls]
homepage = "https://scenariocompass.org"
repository = "https://github.com/IAMconsortium/scenariocompass"
[tool.poetry.group.dev.dependencies]
ruff = "^0.15.0"
[tool.poetry.group.test.dependencies]
pytest = "^9.0.2"
[tool.poetry.requires-plugins]
poetry-dynamic-versioning = { version = ">=1.0.0,<2.0.0", extras = ["plugin"] }
[tool.poetry-dynamic-versioning]
bump = true
enable = true
style = "pep440"
vcs = "git"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"