Metadata-Version: 2.1
Name: grademage
Version: 0.1.6
Summary: Module to grade online quiz.
Home-page: https://github.com/yiyitech/grademage
Author: Samuel Zhang
Author-email: qisamuelzhang@hotmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE

# Grade Mage

Auto grader for online quiz.

Use the following command to ensure all the tests are passed:

```
pytest
```

Use the following commands for development locally:

```
python3 setup.py develop
```


Then execute the following command t generate the wheel:

```

python3 setup.py sdist bdist_wheel
```

Upload the module to test server:

```
python3 -m pip install --upgrade twine
python3 -m twine upload --repository testpypi dist/*
```

Distribute the module to production server:

```
python3 -m twine upload --repository pypi dist/*
```

