Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python 3 Project Initialization / Prototyping

I'm looking for the correct way to prototype, initiate a Python project.

  • PasteScript has not been updated to Python 3.
  • Skeleton is available fror 3.1 but has not been maintained for the last two years.
  • Step by Step Guide gives information to manually create the structure of a project for packaging.
  • The Hitchhiker’s Guide to Packaging

Is there any new candidate for starting a project and populating all the files necessary for the project?

like image 637
karlcow Avatar asked Jul 04 '12 20:07

karlcow


1 Answers

Not exactly what I was looking for but it will do the job.

  • A Project Skeleton
  • Another project skeleton to download on Github.
  • How to Package your Python Code

Adding new information

  • Cookiecutter seems exactly what it requires to initialize and start a project. See a blog posts explaining it.
  • Cookiecutter for libraries
like image 98
karlcow Avatar answered Oct 16 '22 04:10

karlcow