We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b438f2a commit ccad2d2Copy full SHA for ccad2d2
script/bootstrap
@@ -0,0 +1,10 @@
1
+#!/bin/sh
2
+# Resolve all dependencies that the application requires to run.
3
+
4
+# Stop on errors
5
+set -e
6
7
+cd "$(dirname "$0")/.."
8
9
+echo "Installing test and release dependencies..."
10
+python3 -m pip install pylint flake8 pydocstyle twine
script/release
@@ -0,0 +1,8 @@
+# Pushes a new version to PyPi.
+rm -rf dist
+python3 setup.py sdist
+python3 -m twine upload dist/* --skip-existing
script/setup
+# Setups the repository.
+script/bootstrap
+pip3 install -e .
0 commit comments