From 47663cdba50bec86db914fa65dbcf8ff9685609d Mon Sep 17 00:00:00 2001 From: "Gustavo H. Strassburger" Date: Tue, 7 Jul 2026 16:45:41 -0300 Subject: [PATCH] feat(openfeature): add README so PyPI shows a project description --- .sampo/changesets/openfeature-provider-readme.md | 5 +++++ openfeature-provider/README.md | 9 +++++++++ openfeature-provider/pyproject.toml | 1 + 3 files changed, 15 insertions(+) create mode 100644 .sampo/changesets/openfeature-provider-readme.md create mode 100644 openfeature-provider/README.md diff --git a/.sampo/changesets/openfeature-provider-readme.md b/.sampo/changesets/openfeature-provider-readme.md new file mode 100644 index 00000000..c167c43a --- /dev/null +++ b/.sampo/changesets/openfeature-provider-readme.md @@ -0,0 +1,5 @@ +--- +'pypi/openfeature-provider-posthog': patch +--- + +Add a README so PyPI renders a project description instead of showing none. diff --git a/openfeature-provider/README.md b/openfeature-provider/README.md new file mode 100644 index 00000000..830c93a8 --- /dev/null +++ b/openfeature-provider/README.md @@ -0,0 +1,9 @@ +# openfeature-provider-posthog + +Official PostHog provider for the [OpenFeature](https://openfeature.dev) Python SDK, backed by [posthog-python](https://github.com/PostHog/posthog-python). + +## Documentation + +Installation and usage instructions live in the PostHog docs, so they stay in one place and don't drift: + +https://posthog.com/docs/feature-flags/installation/openfeature diff --git a/openfeature-provider/pyproject.toml b/openfeature-provider/pyproject.toml index 8bb680c6..3c146fef 100644 --- a/openfeature-provider/pyproject.toml +++ b/openfeature-provider/pyproject.toml @@ -6,6 +6,7 @@ build-backend = "setuptools.build_meta" name = "openfeature-provider-posthog" version = "0.1.0" description = "Official PostHog provider for the OpenFeature Python SDK." +readme = "README.md" authors = [{ name = "PostHog", email = "engineering@posthog.com" }] maintainers = [{ name = "PostHog", email = "engineering@posthog.com" }] license = { text = "MIT" }