chore: bootstrap repo skeleton

This commit is contained in:
naps62
2026-05-27 15:03:06 +00:00
commit 5a8ba8af88
7 changed files with 89 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
__pycache__/
*.py[cod]
*.egg-info/
.venv/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/
.idea/
.vscode/
+6
View File
@@ -0,0 +1,6 @@
# Changelog
## [Unreleased]
### Added
- Initial implementation
+21
View File
@@ -0,0 +1,21 @@
MIT License
Copyright (c) 2026 naps62
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
+18
View File
@@ -0,0 +1,18 @@
# EV Solar Charger
A Home Assistant custom integration that dynamically sets your EV's charge current from solar surplus.
## Features
- Solar-tracking charge rate during the day
- Hard cap during dinner hours to avoid overloading
- Full-speed top-up during cheap-tariff night windows
- Two independent SOC targets (day vs night) so you can hold for solar or top up from grid as desired
## Installation
(filled in with the README content task)
## Configuration
(filled in with the README content task)
+33
View File
@@ -0,0 +1,33 @@
[project]
name = "ev_solar_charger"
version = "0.1.0"
description = "Home Assistant integration: dynamic EV charging from solar surplus"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.13"
[project.optional-dependencies]
dev = [
"homeassistant>=2026.2.0",
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-homeassistant-custom-component>=0.13",
"ruff>=0.5",
"mypy>=1.10",
]
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP", "ASYNC", "RUF"]
[tool.mypy]
python_version = "3.13"
strict = true
ignore_missing_imports = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
View File