diff --git a/src/config_parser/__init__.py b/src/config_parser/__init__.py index da5917c..60b7794 100644 --- a/src/config_parser/__init__.py +++ b/src/config_parser/__init__.py @@ -31,6 +31,7 @@ from . import json from . import ini from . import parse from . import serialize +import warnings __all__ = [ 'exceptions', @@ -39,4 +40,6 @@ __all__ = [ 'parse', 'serialize', *_configuration__all__ -] \ No newline at end of file +] + +warnings.warn('config-parser is deprecated. Use jcloud-config-parser instead (due to a name conflict).', DeprecationWarning) \ No newline at end of file