-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpublish.sh
executable file
·44 lines (37 loc) · 970 Bytes
/
publish.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
35
36
37
38
39
40
41
42
43
44
#!/bin/bash
set -x # echo on
# Usage:
# $ ./publish.sh
# $ ./publish.sh --repo=pypi --name=max-empty-rect-py
# $ ./publish.sh -r=testpypi -n=max-empty-rect-py
repo="pypi"
package_name="max-empty-rect-py"
for i in "$@"
do
case $i in
-r=*|--repo=*)
repo="${i#*=}"
shift # past argument=value
;;
-n=*|--name=*)
package_name="${i#*=}"
shift # past argument=value
;;
esac
done
read -p "Вы уверены, что хотите провести публикацию $package_name в $repo? " -n 1 -r
echo # (optional) move to a new line
if [[ $REPLY =~ ^[Yy]$ ]]
then
pip uninstall "$package_name"
python setup.py sdist upload -r $repo
if [ "$repo" == "pypi" ]
then
pip install "$package_name" --user
elif [ "$repo" == "testpypi" ]
then
pip install --extra-index-url https://testpypi.python.org/pypi "$package_name" --user
fi
pip list
ls ~/.local/lib/python3.5/site-packages/
fi