@Library('ntsjenkins') _

//
// See all options and their defaults in defaultPythonProjectConfig.groovy:
//     https://git.uoregon.edu/projects/ISN/repos/ntsjenkins_shared_library/browse/vars/defaultPythonProjectConfig.groovy
//
node(label: 'python3.8') {
    buildPythonProject(
        packageIndex: 'pypi.org',
        hatchTestCmd: 'hatch run cicd:cov',
        pythonVersion: 'python3.8',
        test: true,
        hatch: true,
        coverage: true,
        versionFile: 'version.py',
    )
}
