mirror of
https://github.com/status-im/PyGithub.git
synced 2026-09-02 03:41:08 +00:00
15 lines
273 B
Bash
15 lines
273 B
Bash
#!/bin/sh
|
|
|
|
cp -r *.md doc COPYING* github
|
|
|
|
python setup.py sdist
|
|
|
|
rm -rf github/*.md github/doc github/COPYING*
|
|
|
|
echo "Type 'yes' if everything is right and you want to publish the package"
|
|
read yes
|
|
if [ "x$yes" == "xyes" ]
|
|
then
|
|
python setup.py upload
|
|
fi
|