From d769f65097d28f66d544d5aa4083623dda485abe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez=20Mondrag=C3=B3n?= <16805946+edgarrmondragon@users.noreply.github.com> Date: Tue, 7 Jan 2025 12:26:49 -0600 Subject: [PATCH] chore: Rename package to `meltanolabs-tap-github` (#343) --- pyproject.toml | 5 ++++- tap_github/tap.py | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a2b35f8b..683dc95b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.poetry] -name = "tap-github" +name = "meltanolabs-tap-github" version = "1.10.0" description = "Singer tap for GitHub, built with the Singer SDK." authors = ["Meltano and Meltano Community "] @@ -24,6 +24,9 @@ classifiers = [ "Programming Language :: Python :: Implementation :: CPython", "Typing :: Typed", ] +packages = [ + { include = "tap_github", format = ["sdist", "wheel"] } +] [tool.poetry.urls] "Issue Tracker" = "https://github.com/MeltanoLabs/tap-github/issues" diff --git a/tap_github/tap.py b/tap_github/tap.py index 311bc244..c32af396 100644 --- a/tap_github/tap.py +++ b/tap_github/tap.py @@ -16,6 +16,7 @@ class TapGitHub(Tap): """GitHub tap class.""" name = "tap-github" + package_name = "meltanolabs-tap-github" @classproperty def logger(cls) -> logging.Logger: