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: