-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Small updates on python package (#37)
* Move json load to request function * Change async timeout * Small project change
- Loading branch information
1 parent
f2a8c99
commit 4195b96
Showing
4 changed files
with
9 additions
and
9 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
Empty file.
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,7 +1,7 @@ | ||
[tool.poetry] | ||
name = "pure_energie" | ||
version = "0.0.0" | ||
description = "Asynchronous Python client for the Pure Energy devices" | ||
description = "Asynchronous Python client for the Pure Energie Meter devices" | ||
authors = ["Klaas Schoute <[email protected]>"] | ||
maintainers = ["Klaas Schoute <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -63,7 +63,7 @@ bandit = "^1.7.1" | |
Changelog = "https://github.com/klaasnicolaas/python-pem/releases" | ||
|
||
[tool.black] | ||
target-version = ['py37'] | ||
target-version = ['py38'] | ||
|
||
[tool.coverage.paths] | ||
source = ["pure_energie"] | ||
|
@@ -120,5 +120,5 @@ paths = ["pure_energie"] | |
verbose = true | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
requires = ["setuptools", "poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" |