mirror of
https://github.com/TECHNOFAB11/bumpver.git
synced 2025-12-12 14:30:09 +01:00
wip: misc project updates
This commit is contained in:
parent
2ca615d19b
commit
e888be1f71
14 changed files with 219 additions and 438 deletions
31
bootstrapit.sh
Normal file
31
bootstrapit.sh
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
#!/bin/bash
|
||||
# Bootstrapit Project Configuration
|
||||
|
||||
AUTHOR_NAME="Manuel Barkhau"
|
||||
AUTHOR_CONTACT="@mbarkhau"
|
||||
|
||||
KEYWORDS="version versioning bumpversion calver"
|
||||
DESCRIPTION="CalVer versioning for python libraries."
|
||||
|
||||
LICENSE_ID="MIT"
|
||||
|
||||
PACKAGE_NAME="pycalver"
|
||||
GIT_REPO_NAMESPACE="mbarkhau"
|
||||
GIT_REPO_DOMAIN="gitlab.com"
|
||||
|
||||
DEFAULT_PYTHON_VERSION="python=3.6"
|
||||
|
||||
IS_PUBLIC=1
|
||||
|
||||
## Download and run the actual update script
|
||||
|
||||
PROJECT_DIR=$(dirname $0)
|
||||
|
||||
if ! [[ -f $PROJECT_DIR/scripts/bootstrapit_update.sh ]]; then
|
||||
RAW_FILES_URL="https://gitlab.com/mbarkhau/bootstrapit/raw/master"
|
||||
mkdir -p "$PROJECT_DIR/scripts/";
|
||||
curl --silent -O "$PROJECT_DIR/scripts/bootstrapit_update.sh" \
|
||||
"$RAW_FILES_URL/scripts/bootstrapit_update.sh";
|
||||
fi
|
||||
|
||||
source $PROJECT_DIR/scripts/bootstrapit_update.sh;
|
||||
Loading…
Add table
Add a link
Reference in a new issue