Skip to content

Latest commit

 

History

History
30 lines (29 loc) · 967 Bytes

README.md

File metadata and controls

30 lines (29 loc) · 967 Bytes

ACDtools

Australian Climate Data Tools

ACDtools/
│
├── ACDtools/        # Main package directory
│   ├── __init__.py  # Initialize the package
│   ├── ard.py       # ARD module
|   ├── ocean.py     # oceanographic functions
│   └── util.py      # utilities
│
├── tests/                    # Optional: Tests directory for your own testing
│   ├── test_ard.py
│
├── setup.py                  # Simple setup for easy local installation
└── .gitignore                # Optional: Git ignore file for excluding unnecessary files

Installation - locally at NCI

To install the package on your local system, navigate to the root directory of your repo and run the following command:

pip install --user -e .

or in a Jupyter notebook:

!pip install --user -e /g/data/es60/users/thomas_moore/code/ACDtools

Testing - very basic

Run your tests locally with pytest: pytest