#! /bin/sh if [ -z "$1" -o -n "$2" ]; then echo "Usage: $0 project_name" >&2 exit 1 fi project_name="$1" cd "`dirname \"$0\"`" && rm -rf "$HOME/tmp/$project_name" && cp -ap project_template "$HOME/tmp/$project_name" && cd "$HOME/tmp/$project_name" && mv project "$project_name" && sed -i /'{project}'/"$project_name"/g .gitignore README.rst \ devscripts/README.html docs/genapidocs docs/install.rst \ mk-distr publish-docs setup.py tox.ini && sphinx-quickstart --project="$project_name" --author="Oleg Broytman" \ -v0.0 -r0.0.1 --ext-autodoc --makefile --no-batchfile -q docs && git init && echo /publish-docs >>.git/info/exclude && echo /update-remotes >>.git/info/exclude && git add . && git commit --message "Initial commit - created the project" && git config htdocs.path "$HOME"/Internet/WWW/htdocs/phdru.name/Software/Python/"$project_name"/docs && cp -p "$HOME"/current/projects/m_lib/update-remotes . && exec ./mk-git-aliases