Sha256: 54d3910aa7147fad32a0c3f499d95bffe5532f83b7ae60f9411601adcf53da77
Contents?: true
Size: 868 Bytes
Versions: 5
Compression:
Stored size: 868 Bytes
Contents
module Shipit class DeploySpec module PypiDiscovery def discover_deploy_steps discover_pypi || super end def discover_pypi publish_egg if egg? end def discover_review_checklist discover_pypi_checklist || super end def discover_pypi_checklist if egg? [%(<strong>Don't forget to add a tag before deploying!</strong> You can do this with: git tag -a -m "Version <strong>x.y.z</strong>" v<strong>x.y.z</strong> && git push --tags)] end end def egg? setup_dot_py.exist? end def setup_dot_py file('setup.py') end def publish_egg [ "assert-egg-version-tag #{setup_dot_py}", 'python setup.py register sdist', 'twine upload dist/*', ] end end end end
Version data entries
5 entries across 5 versions & 1 rubygems