-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from b2un0/main
migrate to flat layout
- Loading branch information
Showing
19 changed files
with
1,796 additions
and
1,760 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
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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[project] | ||
name = "evseMQTT" | ||
version = "0.0.1" | ||
readme = "README.md" | ||
license = { file = "LICENSE" } | ||
keywords = ["evse", "mqtt", "BESEN", "BS20", "WALLBOX", "BLE"] | ||
requires-python = ">=3.7" | ||
|
||
dependencies = [ | ||
"bleak==0.20.2", | ||
"paho-mqtt==1.6.1" | ||
] | ||
|
||
[project.scripts] | ||
evseMQTT = "main:main" | ||
|
||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" |
This file was deleted.
Oops, something went wrong.
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,11 +1,11 @@ | ||
from .ble_manager import BLEManager | ||
from .device import Device | ||
from .event_handlers import EventHandlers | ||
from .logger import Logger | ||
from .utils import Utils | ||
from .constants import Constants | ||
from .parsers import Parsers | ||
from .mqttpayloads import MQTTPayloads | ||
from .mqttclient import MQTTClient | ||
from .mqttcallback import MQTTCallback | ||
from .ble_manager import BLEManager | ||
from .device import Device | ||
from .event_handlers import EventHandlers | ||
from .logger import Logger | ||
from .utils import Utils | ||
from .constants import Constants | ||
from .parsers import Parsers | ||
from .mqttpayloads import MQTTPayloads | ||
from .mqttclient import MQTTClient | ||
from .mqttcallback import MQTTCallback | ||
from .commands import Commands |
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
Oops, something went wrong.