Mercurial > hg > config
view python/new-python-project.py @ 725:55a9ba575605
i need this actually for cdwin
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Wed, 05 Nov 2014 13:58:49 -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()