1234567891011121314151617181920212223242526272829303132 |
- #!/usr/bin/env python
- # encoding: utf-8
- # VARS = year
- pypush_file_string = """
- #!/bin/sh
- # Scriptacular - pypush.sh
- # Create a Python source distribution and push it to PyPI
- # Copyright {{year}} Christopher Simpkins
- # MIT License
- # Build and push to PyPI
- python setup.py sdist upload
- # Confirm that it worked
- if (( $? )); then
- echo "Unable to distribute your release to PyPI" >&2
- exit 1
- fi
- python setup.py bdist_wheel upload
- # Confirm that wheel distribution worked
- if (( $? )); then
- echo "Unable to distribute your wheel to PyPI" >&2
- exit 1
- fi
- # Exit success
- exit 0
- """
|