forked from schollii/pypubsub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release.bat
28 lines (22 loc) · 890 Bytes
/
release.bat
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
echo off
REM Run this script: it indicates specific steps to follow,
REM and generates the distributions.
REM
REM Oliver, Dec 2016
echo ==============================================================
echo Before continuing, consult the instructions in Release
echo section of Dev docs.
echo ==============================================================
echo Creating source distribution:
python setup.py sdist
echo ==============================================================
echo Creating wheel distribution:
python setup.py bdist_wheel
echo ==============================================================
echo To UPLOAD the dist/* distributions to PyPi, press ENTER,
echo OTHERWISE, press ctrl-c:
pause
twine upload dist/*
echo ==============================================================
echo Upload completed.
echo Follow remaining instructions in Release section of Dev docs.