Metadata-Version: 2.4
Name: drm-tools
Version: 1.0.0a1
Summary: Deprecated: use cvcdocdb instead. This package is a compatibility shim.
Home-page: https://github.com/CVC-DAG/cvcdocdb
Author: Oriol Ramos Terrades
Author-email: oriolrt@cvc.uab.cat
License: MIT
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/x-rst
Requires-Dist: cvcdocdb>=1.0.0a1
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

drm-tools (compatibility shim)
==============================

.. warning::
   This package is deprecated. Use ``cvcdocdb`` instead.

   ::

       pip install cvcdocdb

This package is a thin compatibility shim for users who still have
``import drm`` or ``pip install drm-tools`` in their code. It re-exports
everything from ``cvcdocdb`` and issues a deprecation warning on import.

Installation
------------

::

    pip install drm-tools

This will automatically install ``cvcdocdb>=1.0.0a1`` as a dependency.

Migration
---------

To migrate your code:

1. Replace ``pip install drm-tools`` with ``pip install cvcdocdb``
2. Replace ``import drm`` with ``import cvcdocdb``
3. Replace ``from drm.xxx import ...`` with ``from cvcdocdb.xxx import ...``
