-
Notifications
You must be signed in to change notification settings - Fork 0
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 #3 from sbrinkerhoff/refactor
Refactor for Poetry and Initial Tests
- Loading branch information
Showing
8 changed files
with
384 additions
and
125 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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,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" |
Oops, something went wrong.