Metadata-Version: 2.1
Name: edc-dx
Version: 0.1.12
Summary: Classes to manage review of HIV, DM and HTN diagnoses for clinicedc/edc projects
Home-page: https://github.com/clinicedc/edc-dx
Author: Erik van Widenfelt
Author-email: ew2789@gmail.com
License: GPL license, see LICENSE
Keywords: django Edc diagnosis,clinicedc,clinical trials
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.2
Classifier: Framework :: Django :: 4.0
Classifier: Framework :: Django :: 4.1
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Requires-Python: >=3.9
Description-Content-Type: text/x-rst
License-File: LICENSE
License-File: AUTHORS

|pypi| |actions| |codecov| |downloads|

edc dx
------

Classes to manage review of HIV, DM and HTN diagnoses

Add settings attribute with the conditions to be managed by the `Diagnosis` class.

For example:

.. code-block:: python

    # settings.py
    ...
    EDC_DX_LABELS = dict(
        hiv="HIV",
        dm="Diabetes",
        htn="Hypertension",
        chol="High Cholesterol"
    )
    ...

.. |pypi| image:: https://img.shields.io/pypi/v/edc-dx.svg
    :target: https://pypi.python.org/pypi/edc-dx

.. |actions| image:: https://github.com/clinicedc/edc-dx/workflows/build/badge.svg?branch=develop
  :target: https://github.com/clinicedc/edc-dx/actions?query=workflow:build

.. |codecov| image:: https://codecov.io/gh/clinicedc/edc-dx/branch/develop/graph/badge.svg
  :target: https://codecov.io/gh/clinicedc/edc-dx

.. |downloads| image:: https://pepy.tech/badge/edc-dx
   :target: https://pepy.tech/project/edc-dx
