mirror of
https://github.com/not-kennethreitz/requests-async.git
synced 2026-06-05 23:10:17 +00:00
29 lines
727 B
Bash
Executable File
29 lines
727 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export PACKAGE="requests_async"
|
|
export VERSION=`cat ${PACKAGE}/__init__.py | grep __version__ | sed "s/__version__ = //" | sed "s/'//g"`
|
|
export PREFIX=""
|
|
if [ -d 'venv' ] ; then
|
|
export PREFIX="venv/bin/"
|
|
fi
|
|
|
|
scripts/clean
|
|
|
|
if ! command -v "${PREFIX}twine" &>/dev/null ; then
|
|
echo "Unable to find the 'twine' command."
|
|
echo "Install from PyPI, using '${PREFIX}pip install twine'."
|
|
exit 1
|
|
fi
|
|
|
|
find ${PACKAGE} -type f -name "*.py[co]" -delete
|
|
find ${PACKAGE} -type d -name __pycache__ -delete
|
|
|
|
${PREFIX}python setup.py sdist
|
|
${PREFIX}twine upload dist/*
|
|
|
|
echo "You probably want to also tag the version now:"
|
|
echo "git tag -a ${VERSION} -m 'version ${VERSION}'"
|
|
echo "git push --tags"
|
|
|
|
scripts/clean
|