forked from songweizhi/Katana_cmds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBinning_refiner.sh
36 lines (25 loc) · 942 Bytes
/
Binning_refiner.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
##################################### upload to PyPI #####################################
# upload Binning_refiner to PyPI
alias twine='/Users/songweizhi/Library/Python/3.7/bin/twine'
cd /Users/songweizhi/PycharmProjects/Binning_refiner
rm -r build
rm -r dist
rm -r BioSAK.egg-info
python setup.py sdist bdist_wheel
twine upload dist/*
songweizhi
shan88
# install/upgrade Binning_refiner
pip install --upgrade Binning_refiner
################################## upload to PyPI (Test) #################################
# upload Binning_refiner to TestPyPI
alias twine='/Users/songweizhi/Library/Python/3.7/bin/twine'
cd /Users/songweizhi/PycharmProjects/Binning_refiner
rm -r build
rm -r dist
rm -r BioSAK.egg-info
python setup.py sdist bdist_wheel
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
songweizhi
# install/upgrade Binning_refiner
pip install --upgrade -i https://test.pypi.org/simple/ Binning_refiner