Metadata-Version: 2.1
Name: idm-test
Version: 0.1.0
Summary: idm_test package
Home-page: https://github.com/InstituteforDiseaseModeling/idm_test
Author: Ye Chen
Author-email: yechen@idmod.org
Project-URL: Bug Tracker, https://github.com/InstituteforDiseaseModeling/idm_test/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Framework:: IDM-Test :: Test
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# idm_test

<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of Contents**

- .[User Installation](#user-installation)
  - .[From IDM Production Environment](#from-IDM-production-environment)
  - .[Dev Installation](#dev-installation)
  - .[Pre-requisites](#pre-requisites)
- .[Run Tests](#run-tests)


<!-- END doctoc generated TOC please keep comment here to allow auto update -->


# User Installation

## From IDM Production Environment
```bash
pip install idm_test --index-url=https://packages.idmod.org/api/pypi/pypi-production/simple
```

## Dev Installation
```bash
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade build
python3 -m build
pip install dist/{update-this-with-the-wheel-file-name}.whl
```

## Pre-requisites
- Python 3.7+ x64

# Run Tests
```bash
cd tests
python3 -m unittest discover .
```
