-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathpublish
executable file
·70 lines (58 loc) · 1.34 KB
/
publish
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/bin/bash
set -e
if [[ -n "${CI}" ]]; then
set -x
fi
# Import shared variables
SUBPACKAGE_DIRS=(
"stac_fastapi/types"
"stac_fastapi/extensions"
"stac_fastapi/api"
)
function usage() {
echo -n \
"Usage: $(basename "$0")
Publish all stac-fastapi packages.
Options:
--test Publish to test pypi. Requires a 'testpypi' repository
be defined in your .pypirc;
See https://packaging.python.org/guides/using-testpypi/#using-testpypi-with-pip
"
}
POSITIONAL=()
while [[ $# -gt 0 ]]
do
key="$1"
case $key in
--help)
usage
exit 0
shift
;;
--test)
TEST_PYPI="--repository testpypi"
shift
;;
*) # unknown option
POSITIONAL+=("$1") # save it in an array for later
shift # past argument
;;
esac
done
set -- "${POSITIONAL[@]}" # restore positional parameters
# Fail if this isn't CI and we aren't publishing to test pypi
if [ -z "${TEST_PYPI}" ] && [ -z "${CI}" ]; then
echo "Only CI can publish to pypi"
exit 1
fi
if [ "${BASH_SOURCE[0]}" = "${0}" ]; then
for PACKAGE_DIR in "${SUBPACKAGE_DIRS[@]}"
do
echo ${PACKAGE_DIR}
pushd ./${PACKAGE_DIR}
rm -rf dist
python setup.py sdist bdist_wheel
twine upload ${TEST_PYPI} dist/*
popd
done
fi