bumpver/bootstrapit.sh

38 lines
963 B
Bash
Raw Normal View History

2018-11-04 21:11:42 +01:00
#!/bin/bash
# Bootstrapit Project Configuration
AUTHOR_NAME="Manuel Barkhau"
2018-12-09 16:50:09 +01:00
AUTHOR_EMAIL="mbarkhau@gmail.com"
2018-11-04 21:11:42 +01:00
2020-10-18 20:47:35 +00:00
KEYWORDS="version bumpver calver semver versioning bumpversion pep440"
DESCRIPTION="Bump version numbers in project files."
2018-11-04 21:11:42 +01:00
LICENSE_ID="MIT"
2020-10-18 20:47:35 +00:00
PACKAGE_NAME="bumpver"
2018-11-04 21:11:42 +01:00
GIT_REPO_NAMESPACE="mbarkhau"
2020-10-04 17:21:45 +00:00
GIT_REPO_DOMAIN="github.com"
2018-11-04 21:11:42 +01:00
2020-11-24 20:54:23 +00:00
PACKAGE_VERSION="2020.1107"
2018-12-05 09:37:34 +01:00
2020-10-04 17:21:45 +00:00
DEFAULT_PYTHON_VERSION="python=3.8"
2020-10-18 20:47:35 +00:00
SUPPORTED_PYTHON_VERSIONS="python=2.7 python=3.6 pypy2.7 pypy3.5 python=3.8"
2020-10-04 17:21:45 +00:00
DOCKER_REGISTRY_DOMAIN=registry.gitlab.com
2018-11-04 21:11:42 +01:00
IS_PUBLIC=1
## Download and run the actual update script
PROJECT_DIR=$(dirname $0)
if ! [[ -f $PROJECT_DIR/scripts/bootstrapit_update.sh ]]; then
mkdir -p "$PROJECT_DIR/scripts/";
2018-11-04 21:18:16 +01:00
RAW_FILES_URL="https://gitlab.com/mbarkhau/bootstrapit/raw/master";
curl --silent "$RAW_FILES_URL/scripts/bootstrapit_update.sh" \
> "$PROJECT_DIR/scripts/bootstrapit_update.sh"
2018-11-04 21:11:42 +01:00
fi
source $PROJECT_DIR/scripts/bootstrapit_update.sh;