forked from codeforboston/home-energy-analysis-tool
-
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 #1 from AdamFinkle/package_and_publish
Restructured, integration tested, and packaged for PyPI.
- Loading branch information
Showing
43 changed files
with
774,808 additions
and
195 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,17 @@ | ||
*.pyc | ||
# Documentation | ||
doc/*.png | ||
|
||
# Python | ||
*.pyc | ||
__pycache__/ | ||
|
||
# Environments | ||
venv/ | ||
|
||
# PyCharm | ||
.idea/ | ||
|
||
# Distribution / packaging | ||
build/ | ||
dist/ | ||
*.egg-info/ |
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,53 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.0.0", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "greenbutton_objects" | ||
version = "2024.6.21" | ||
description = "Parse Green Button XML files into Python objects." | ||
readme = "README.md" | ||
authors = [{ name = "Adam Finkle", email = "[email protected]" }, | ||
{ name = "Ethan Strominger", email = "[email protected]" }] | ||
license = { file = "LICENSE" } | ||
classifiers = [ | ||
"License :: OSI Approved :: Apache 2.0", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
] | ||
keywords = ["feed", "reader", "tutorial"] | ||
requires-python = ">=2.7" | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"black", | ||
"bumpver", | ||
"isort", | ||
"mypy", | ||
"pip-tools", | ||
"pydocstyle", | ||
"pytest" | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/AdamFinkle/greenbutton_objects" | ||
[tool.bumpver] | ||
current_version = "2024.6.21" | ||
version_pattern = "YYYY.MM.DD" | ||
commit_message = "bump version {old_version} -> {new_version}" | ||
tag_message = "{new_version}" | ||
tag_scope = "default" | ||
pre_commit_hook = "" | ||
post_commit_hook = "" | ||
commit = true | ||
tag = true | ||
push = true | ||
|
||
[tool.bumpver.file_patterns] | ||
"pyproject.toml" = [ | ||
'current_version = "{version}"', | ||
] | ||
"README.md" = [ | ||
"{version}", | ||
"{pep440_version}", | ||
] |
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,66 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.11 | ||
# by the following command: | ||
# | ||
# pip-compile --extra=dev --output-file=requirements-dev.txt pyproject.toml | ||
# | ||
black==24.4.2 | ||
# via greenbutton_objects (pyproject.toml) | ||
build==1.2.1 | ||
# via pip-tools | ||
bumpver==2023.1129 | ||
# via greenbutton_objects (pyproject.toml) | ||
click==8.1.7 | ||
# via | ||
# black | ||
# bumpver | ||
# pip-tools | ||
colorama==0.4.6 | ||
# via bumpver | ||
iniconfig==2.0.0 | ||
# via pytest | ||
isort==5.13.2 | ||
# via greenbutton_objects (pyproject.toml) | ||
lexid==2021.1006 | ||
# via bumpver | ||
looseversion==1.3.0 | ||
# via bumpver | ||
mypy==1.10.0 | ||
# via greenbutton_objects (pyproject.toml) | ||
mypy-extensions==1.0.0 | ||
# via | ||
# black | ||
# mypy | ||
packaging==24.1 | ||
# via | ||
# black | ||
# build | ||
# pytest | ||
pathspec==0.12.1 | ||
# via black | ||
pip-tools==7.4.1 | ||
# via greenbutton_objects (pyproject.toml) | ||
platformdirs==4.2.2 | ||
# via black | ||
pluggy==1.5.0 | ||
# via pytest | ||
pydocstyle==6.3.0 | ||
# via greenbutton_objects (pyproject.toml) | ||
pyproject-hooks==1.1.0 | ||
# via | ||
# build | ||
# pip-tools | ||
pytest==8.2.2 | ||
# via greenbutton_objects (pyproject.toml) | ||
snowballstemmer==2.2.0 | ||
# via pydocstyle | ||
toml==0.10.2 | ||
# via bumpver | ||
typing-extensions==4.12.2 | ||
# via mypy | ||
wheel==0.43.0 | ||
# via pip-tools | ||
|
||
# The following packages are considered to be unsafe in a requirements file: | ||
# pip | ||
# setuptools |
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,6 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.11 | ||
# by the following command: | ||
# | ||
# pip-compile --strip-extras pyproject.toml | ||
# |
This file was deleted.
Oops, something went wrong.
Empty file.
File renamed without changes.
Oops, something went wrong.