forked from FZJ-IEK3-VSA/FINE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
89 lines (80 loc) · 2.33 KB
/
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
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
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fine"
version = "2.3.7"
description = "Framework for integrated energy systems assessment"
readme = "README.md"
authors = [
{ name = "Theresa Groß", email = "t.gross@fz-juelich.de" },
{ name = "Kevin Knosala", email = "k.knosala@fz-juelich.de" },
]
maintainers = [
{ name = "Theresa Groß", email = "t.gross@fz-juelich.de" },
{ name = "Kevin Knosala", email = "k.knosala@fz-juelich.de" },
]
license = { file = "LICENSE" }
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
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",
]
requires-python = ">=3.10,<3.13"
[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"
documentation = "https://vsa-fine.readthedocs.io/en/master/"
[tool.ruff]
extend-include = ["*.ipynb"]
[tool.ruff.lint]
ignore = [
"F403", # ‘from module import *’ used; unable to detect undefined names
]