Skip to content

Commit e8a2ed8

Browse files
committed
Add maintainers
1 parent 38c2549 commit e8a2ed8

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ SHA1 := $$(git log -1 --pretty=%h)
88
CURRENT_BRANCH := $$(git symbolic-ref -q --short HEAD)
99
LATEST_TAG := ${REPO_NAME}:latest
1010
GIT_TAG := ${REPO_NAME}:${SHA1}
11-
VERSION := v0.1.8
11+
VERSION := v0.1.9
1212

1313
info: ## Show information about the current git state.
1414
@echo "Github Project: https://github.com/${REPO_NAME}\nCurrent Branch: ${CURRENT_BRANCH}\nSHA1: ${SHA1}\n"

cloudendure/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.8"
1+
__version__ = "0.1.9"

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
URL: str = "https://github.com/2ndWatch/cloudendure-python"
2323
2424
AUTHOR: str = "Mark Beacom, Tom Warnock"
25+
MAINTAINER_EMAIL: str = "[email protected],[email protected]"
26+
MAINTAINER: str = "Evan Lucchesi Leon,Nick Selpa"
2527
REQUIRES_PYTHON: str = ">=3.7.0"
2628
VERSION: str = os.environ.get("CLOUDENDURE_CLIENT_VERSION", "")
2729

@@ -105,6 +107,8 @@ def run(self):
105107
long_description_content_type="text/markdown",
106108
author=AUTHOR,
107109
author_email=EMAIL,
110+
maintainer=MAINTAINER,
111+
maintainer_email=MAINTAINER_EMAIL,
108112
python_requires=REQUIRES_PYTHON,
109113
url=URL,
110114
packages=find_packages(exclude=["tests", "*.tests", "*.tests.*", "tests.*"]),

0 commit comments

Comments
 (0)