Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a python equivalent to perl's module-starter?

Is there a python equivalent to perl's module-starter?

like image 513
mlbright Avatar asked Mar 20 '12 03:03

mlbright


2 Answers

You probably looking for something like paster create that can create the skeleton for new projects for various frameworks. Some libraries may provide custom commands to create a new project e.g.,:

python -m cyclone.app -p foobar

The literal equivalent might be modern-package-template that uses paster to create a Python project with distribute and buildout support (I've never used it personally).

To package your application for Debian/Ubuntu you could use pkgme.

like image 184
jfs Avatar answered Oct 17 '22 14:10

jfs


I barely speak Perl and have never used module-starter, but you might want to give distutils a look.

like image 3
Taymon Avatar answered Oct 17 '22 15:10

Taymon