Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 679 Bytes

README.md

File metadata and controls

30 lines (25 loc) · 679 Bytes

Temperature Converter Package

This package converts temperature values from one unit to another.

  • It was created to show the steps on how to write a Python package from scratch.
  • It requires the modules os, sys and yaml.

This package has the directory structure:

temperature_converter/
    setup.py
    LICENSE
    README.md
    temperature_converter/
        README.md
        __init__.py
        main.py
        input_file.yaml
        functions/
            __init__.py
            temperature_functions.py
        shared/
            __init__.py
            constants.py
        tests/
            __init__.py
            test_temperature_functions.py