-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add packaging information and make it usable by Makefile. Signed-off-by: Bobby Noelte <[email protected]>
- Loading branch information
Showing
2 changed files
with
55 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,35 @@ | ||
[project] | ||
name = "akkudoktor-eos" | ||
version = "0.0.1" | ||
authors = [ | ||
{ name="Andreas Schmitz", email="[email protected]" }, | ||
] | ||
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"} | ||
requires-python = ">=3.8" | ||
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", ] | ||
|
||
[tool.isort] | ||
profile = "black" | ||
|
||
|
@@ -7,8 +39,7 @@ ignore = [ | |
] | ||
|
||
[tool.pytest.ini_options] | ||
minversion = "7.0" | ||
minversion = "8.3.3" | ||
addopts = "--cov=src" | ||
pythonpath = [ "src", ] | ||
testpaths = [ "tests", ] | ||
|