Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Split OpenFeature Provider for Python
[![Twitter Follow](https://img.shields.io/twitter/follow/splitsoftware.svg?style=social&label=Follow&maxAge=1529000)](https://twitter.com/intent/follow?screen_name=splitsoftware)

## Warning: DEPRECATED
This package is deprecated. Please use the new package `split-openfeature-provider`.

## Overview
This Provider is designed to allow the use of OpenFeature with Split, the platform for controlled rollouts, serving features to your users via the Split feature flag to manage your complete customer experience.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
setuptools.setup(
name="split_openfeature_provider",
version="1.0.0",
description="The official Python Split Provider for OpenFeature",
description="Deprecated Python Split Provider for OpenFeature. Please use split-openfeature-provider",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
Expand Down
2 changes: 2 additions & 0 deletions split_openfeature_provider/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
from split_openfeature_provider.split_provider import SplitProvider, SplitProviderAsync
from split_openfeature_provider.split_client_wrapper import SplitClientWrapper
import warnings
warnings.warn("deprecated", DeprecationWarning)