#!/usr/bin/env groovy

// Include this shared CI repository to load script helpers and libraries.
library identifier: 'vapor@1.0.0-RC11', retriever: modernSCM(
    [$class: 'GitSCMSource',
    remote: 'https://github.com/vapor-ware/ci-shared.git',
    credentialsId: 'vio-bot-gh'])

pythonPipeline([
    "pythonVersion": "3.8",
    "twineCredential": "pypi-token-aionetbox-upload",
    "publishToPypi": true,
    "mainBranch": "master",
    "skipDocs": true,
    "skipDocker": true,
    "skipIntegrationTest": true,
])

