-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (69 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
80 lines (69 loc) · 1.92 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "energysysalt"
version = "0.0.1"
description = "Model for integrated energy systems assessment in ETHOS.FINE providing modeling to generate alternative (MGA) solutions"
readme = "README.md"
authors = [
{ name = "Lovindu Wijesinghe", email = "l.wijesinghe@fz-juelich.de" },
]
maintainers = [
{ name = "Lovindu Wijesinghe", email = "l.wijesinghe@fz-juelich.de" },
]
keywords = ["energy assesment", "energy system", "optimization"]
dependencies = [
"geopandas<1",
"openpyxl<4",
"matplotlib<4",
"xlrd<3",
"pyomo<7",
"numpy<2",
"pandas>=2,<3",
"scipy<2",
"scikit-learn>=1.2,<2",
"xarray<=2024.3",
"rasterio<2",
"netcdf4<2",
"tsam",
"pwlf<3",
"psutil<6",
"gurobi-logtools<4",
"fine==2.3.7",
]
requires-python = ">=3.10,<3.13"
[tool.setuptools.packages]
find = { include = ["energysysalt", "energysysalt.*"] }
[project.optional-dependencies]
develop = [
"sphinx<8",
"sphinx_rtd_theme<3",
"myst-parser<3",
"pytest<9",
"pytest-cov<5",
"pytest-xdist<4",
"nbval<1",
"ruff<1",
]
#Configureation options
# https://docs.pytest.org/en/7.1.x/reference/reference.html#configuration-options
[tool.pytest.ini_options]
testpaths = ["test"]
console_output_style = "progress"
# How to configure Filterwarning:
# https://docs.python.org/3/library/warnings.html#warning-filter
# action:message:category:module:line
# Omit a field by add ing ":" for each omitted field
# Actions are: "default"
# "error", "ignore", "always", "module", "once"
filterwarnings = []
[project.urls]
homepage = "https://www.fz-juelich.de/de/iek/iek-3/forschung/open-source/fine"
repository = "https://github.com/FZJ-IEK3-VSA/FINE"
[tool.ruff]
extend-include = ["*.ipynb"]
[tool.ruff.lint]
ignore = [
"F403", # ‘from module import *’ used; unable to detect undefined names
]