2024-10-06 13:47:16 +02:00
[ project ]
name = "akkudoktor-eos"
version = "0.0.1"
authors = [
{ name = "Andreas Schmitz" , email = "author@example.com" } ,
]
description = "This project provides a comprehensive solution for simulating and optimizing an energy system based on renewable energy sources. With a focus on photovoltaic (PV) systems, battery storage (batteries), load management (consumer requirements), heat pumps, electric vehicles, and consideration of electricity price data, this system enables forecasting and optimization of energy flow and costs over a specified period."
readme = "README.md"
license = { file = "LICENSE" }
2024-10-07 22:38:14 +02:00
requires-python = ">=3.10"
2024-10-06 13:47:16 +02:00
classifiers = [
"Development Status :: 3 - Alpha" ,
"Programming Language :: Python :: 3" ,
"Operating System :: OS Independent" ,
]
[ project . urls ]
Homepage = "https://github.com/Akkudoktor-EOS/EOS"
Issues = "https://github.com/Akkudoktor-EOS/EOS/issues"
[ build-system ]
requires = [ "setuptools>=61.0" ]
build-backend = "setuptools.build_meta"
[ tool . setuptools . dynamic ]
dependencies = { file = [ "requirements.txt" ] }
optional-dependencies = { dev = { file = [ "requirements-dev.txt" ] } }
[ tool . setuptools . packages . find ]
where = [ "src/" ]
include = [ "akkudoktoreos" , "akkudoktoreosserver" , ]
2024-10-07 12:24:45 +02:00
[ tool . setuptools . package-data ]
akkudoktoreosserver = [ "data/*.npz" , ]
2024-11-10 23:00:16 +01:00
[ tool . pyright ]
# used in Pylance extension for language server
# type check is done by mypy, disable to avoid unwanted errors
typeCheckingMode = "off"
2024-10-03 11:01:37 +02:00
[ tool . isort ]
profile = "black"
2024-10-03 11:05:44 +02:00
2024-10-10 15:00:03 +02:00
[ tool . ruff ]
line-length = 100
2024-10-03 11:05:44 +02:00
[ tool . ruff . lint ]
ignore = [
"F841" , # don't complain about unused variables
]
2024-10-06 12:33:18 +02:00
[ tool . pytest . ini_options ]
2024-10-06 13:47:16 +02:00
minversion = "8.3.3"
2024-10-06 12:33:18 +02:00
pythonpath = [ "src" , ]
testpaths = [ "tests" , ]