Created
June 8, 2021 13:35
-
-
Save bbelderbos/4fcc211d9b30535d270705c8501d5c58 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -e | |
if [ "$#" -ne 1 ]; then | |
echo "Usage: $0 package_name" >&2 | |
exit 1 | |
fi | |
mkdir $1 | |
touch $1/__init__.py | |
mkdir tests | |
touch tests/__init__.py |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment