###
 # Python Package Declarations.
 ##


###
 # General packages.
 # These are used/required for package to run at all.
 ##
django                      # Core Django package.


###
 # Development and testing packages.
 ##
# Testing/Pytest dependencies.
coverage[toml]              # Outputs testing coverage data.
coverage_enable_subprocess  # Required to run coverage in pytest while muti-threaded.
django-expanded-test-cases  # Utilities for easier testing.
pytest                      # Base Pytest package. Current preferred testing method.
pytest-cov                  # Additional Pytest logic for multithreaded coverage support.
pytest-django               # Additional Pytest logic for Django support.
pytest-xdist                # Additional Pytest features, such as multithreading and looping.
