static resources

This commit is contained in:
ed 2019-06-02 14:16:53 +00:00
parent b59deb8d8d
commit afa4216591
9 changed files with 82 additions and 15 deletions

View file

@ -52,12 +52,13 @@ EOF
chmod 600 ~/.pypirc
sed -ri 's/qwer/username/;s/asdf/password/' ~/.pypirc
# setup build env
cd ~/dev/copyparty &&
virtualenv buildenv
. buildenv/bin/activate
pip install m2r
deactivate
# if PY2: create build env
cd ~/dev/copyparty && virtualenv buildenv
(. buildenv/bin/activate && pip install m2r)
# if PY3: create build env
cd ~/dev/copyparty && python3 -m venv buildenv
(. buildenv/bin/activate && pip install m2r wheel)
# test rst
pip install docutils