Skip to content

Commit

Permalink
Merge pull request #3 from sbrinkerhoff/refactor
Browse files Browse the repository at this point in the history
Refactor for Poetry and Initial Tests
  • Loading branch information
sbrinkerhoff authored Jan 4, 2023
2 parents cf05ecd + bc11c48 commit 0ed45c4
Show file tree
Hide file tree
Showing 8 changed files with 384 additions and 125 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
337 changes: 337 additions & 0 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 26 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,27 @@
[build-system]
requires = ["setuptools>=46.1.0", "setuptools_scm[toml]>=5", "wheel"]
build-backend = "setuptools.build_meta"
[tool.poetry]
name = "greenmountainpower"
version = "0.0.4"
description = "This is an unofficial Python client that uses the undocumented API for Green Mountain Power accounts."
authors = ["Kodey Converse <kodey@conve.rs>", "Stan Brinkerhoff <stan@vtwireless.com>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/sbrinkerhoff/greenmountainpower/"
include = [
"LICENSE",
]

[tool.poetry.dependencies]
python = "^3.7"
requests = "^2"
requests-oauthlib = "^1"
oauthlib = "^3"

[tool.poetry.dev-dependencies]
coverage = "^7.0.2"
black = "^22"
pytest = "^7.2.0"

[tool.setuptools_scm]
# See configuration details in https://github.com/pypa/setuptools_scm
version_scheme = "no-guess-dev"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
Loading

0 comments on commit 0ed45c4

Please sign in to comment.