Metadata-Version: 2.4
Name: usdm4_fhir
Version: 0.8.1
Summary: A python package for importing and exporting the CDISC TransCelerate USDM, version 4, using FHIR
Author: D Iberson-Hurst
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: usdm4>=0.18.0
Requires-Dist: d4k_ms_base>=0.3.0
Requires-Dist: fhir.resources==7.1.0
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Requires-Dist: pytest-mock; extra == "test"
Requires-Dist: python-dotenv; extra == "test"
Dynamic: license-file

# USDM4 FHIR

# Install

```pip install usdm4_fhir```

# Build Package

Build steps for deployment to pypi.org

- Run `pytest`, ensure coverage and all tests pass
- Run `ruff format`
- Run `ruff check`, ensure no errors
- Build with `python3 -m build --sdist --wheel`
- Upload to pypi.org using `twine upload dist/*`
