-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (36 loc) · 948 Bytes
/
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
[project]
name = "emtd"
version = "0.3.1"
authors = [
{ name = "Stefan Strömer", email = "8915976+sstroemer@users.noreply.github.com" },
]
license = {text = "MIT"}
requires-python = ">=3.11,<3.13"
description = "This projects provides as slim Python wrapper to access the 'technology-data' data set / snakemake workflow, maintained by the PyPSA team."
readme = "README.md"
keywords = [
"energy modeling",
"technology data",
]
dependencies = [
"pandas >=2.1, <3.0",
"snakemake >=8.5, <9.0",
"openpyxl >=3.1.2, <4.0",
"beautifulsoup4 >= 4.12, <5.0",
"numpy >= 1.26, <2.0",
"xlrd >=2.0, <3.0",
"scipy >= 1.14.0, <2.0",
"packaging >= 23.0, <24.0",
"currencyconverter",
"tabula-py >= 2.10, <3.0",
"pathlib >= 1.0, <2.0",
"pyyaml >= 6.0, <7.0",
]
[dependency-groups]
dev = [
"ruff>=0.8.4",
]
[tool.ruff]
line-length = 120
[project.urls]
repository = "https://github.com/sstroemer/emtd"