From 606519ba50dfc5c2e72f240dffa15730f09ed8f1 Mon Sep 17 00:00:00 2001 From: Tomas Nilsson Date: Fri, 11 Oct 2024 12:46:50 +0000 Subject: [PATCH] fix: re-add ignored generated files to package --- python/remotivelabs-broker/CHANGELOG.md | 7 ------- python/remotivelabs-broker/pyproject.toml | 10 +++++++++- 2 files changed, 9 insertions(+), 8 deletions(-) delete mode 100644 python/remotivelabs-broker/CHANGELOG.md diff --git a/python/remotivelabs-broker/CHANGELOG.md b/python/remotivelabs-broker/CHANGELOG.md deleted file mode 100644 index 55321e1..0000000 --- a/python/remotivelabs-broker/CHANGELOG.md +++ /dev/null @@ -1,7 +0,0 @@ -# Changelog - -## [Unreleased] - -### Fixed - -- Ensure the command `hatch run generate_stubs` for generating gRPC stubs is cross-platform compatible. diff --git a/python/remotivelabs-broker/pyproject.toml b/python/remotivelabs-broker/pyproject.toml index 8a1dc38..d1ca25e 100644 --- a/python/remotivelabs-broker/pyproject.toml +++ b/python/remotivelabs-broker/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "remotivelabs-broker" description = 'RemotiveLabs Broker gRPC API' -version = "0.3.0-beta1" +version = "0.3.0-beta2" readme = "README.md" license = "Apache-2.0" homepage = "https://remotivelabs.com/" @@ -25,6 +25,14 @@ classifiers = [ "Topic :: Scientific/Engineering :: Information Analysis", ] packages = [{ include = "remotivelabs" }] +# specify what files should be included when packaging/publishing the library +include = [ + "README.md", + "LICENSE.txt", + "remotivelabs/broker/py.typed", + "remotivelabs/broker/**/*.py", + "remotivelabs/broker/**/*.pyi", +] [tool.poetry.urls] Issues = "https://github.com/remotivelabs/remotivelabs-apis/issues"