]> git.phdru.name Git - cookiecutter.git/blob - cookiecutter
Simplify tox.ini: call pytest with the current python
[cookiecutter.git] / cookiecutter
1 #! /bin/sh
2
3 if [ -z "$1" -o -n "$2" ]; then
4    echo "Usage: $0 project_name" >&2
5    exit 1
6 fi
7
8 project_name="$1"
9
10 cd "`dirname \"$0\"`" &&
11 rm -rf "$HOME/tmp/$project_name" &&
12 cp -ap project_template "$HOME/tmp/$project_name" &&
13
14 cd "$HOME/tmp/$project_name" &&
15 mv project "$project_name" &&
16
17 replace '{project}' "$project_name" .gitignore README.txt \
18    docs/genapidocs mk-distr publish-docs setup.py tox.ini &&
19
20 sphinx-quickstart --project="$project_name" --author="Oleg Broytman" \
21    -v0.0 -r0.0.1 --ext-autodoc --makefile --no-batchfile -q docs &&
22
23 git init && git add . &&
24 exec git commit --message "Initial commit - created the project"