-
Notifications
You must be signed in to change notification settings - Fork 1
/
bootstrapit.sh
34 lines (23 loc) · 880 Bytes
/
bootstrapit.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash
# Bootstrapit Project Configuration
AUTHOR_NAME="Manuel Barkhau"
AUTHOR_EMAIL="[email protected]"
KEYWORDS="markdown aafigure extension"
DESCRIPTION="aafigure extension for Python Markdown"
LICENSE_ID="MIT"
PACKAGE_NAME="markdown_aafigure"
GIT_REPO_NAMESPACE="mbarkhau"
GIT_REPO_DOMAIN="gitlab.com"
PACKAGE_VERSION="v202405.1012"
DEFAULT_PYTHON_VERSION="python=3.7"
SUPPORTED_PYTHON_VERSIONS="python=2.7 python=3.7 pypy3.5"
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/";
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"
fi
source $PROJECT_DIR/scripts/bootstrapit_update.sh;