-
Notifications
You must be signed in to change notification settings - Fork 10
Start #35
Copy link
Copy link
Closed
Labels
Description
from plumbum import local
git = local['git']
cookiecutter('cookiecutter-pypackage', no_input=True, parameters=params)
git('init %s' % locals())
git('ci -am "Start" *.* .coveragerc .env .gitignore .travis.yml LICENSE docs $project tests' % locals())
github.create_repo(owner, app_name, description="Repo description", homepage="http://repo.homepage.com")
git.set_remotes()
git('push -u origin master')
git('tag 0.0.0')
git('push --tags')Reactions are currently unavailable