Mercurial > hg > config
view python/new-python-project.py @ 767:35f8751c0930
it is very annoying to have ones overrides overridden; see also http://stackoverflow.com/questions/25381304/why-type-cd-on-mac-os-states-that-cd-is-a-function
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Thu, 28 Jan 2016 14:02:17 -0800 |
parents | 772c61f04ccf |
children |
line wrap: on
line source
#!/usr/bin/env python """ makes a new python project. """ import subprocess - Make or utilize a virutalenv @requires("makeitso") - Make a project skeleton: makeitso python-project -o ${PROJECT} - Make a (mercurial) repository: hg init . hg add hg commit -m '${PROJECT}: initial stub' - Push upstream: ssh k0s.org cd hg; hg init ${PROJECT} exit hgrc http://k0s.org/hg/${PROJECT} > .hg/hgrc hg push """ # see also # http://blog.ishans.info/2012/06/10/adding-a-template-for-new-python-files-in-emacs/ import optparse import sys def main(args=sys.argv[1:]): pass if __name__ == '__main__': main()