File: generate-pypi-release.sh

package info (click to toggle)
django-qr-code 4.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,108 kB
  • sloc: python: 3,914; sh: 107; makefile: 20
file content (8 lines) | stat: -rwxr-xr-x 276 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
#!/usr/bin/env bash
(
    python -m pip install --upgrade pip
    pip install --upgrade setuptools wheel twine
    cd ../
    rm -r build/ dist/ django_qr_code.egg-info/
    python setup.py check && python setup.py sdist && python setup.py bdist_wheel && twine upload dist/*
)