{ "info": { "author": "Audrey Roy", "author_email": "audreyr@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Natural Language :: English", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development" ], "description": "=============\nCookiecutter\n=============\n\n.. image:: https://img.shields.io/pypi/v/cookiecutter.svg\n :target: https://pypi.python.org/pypi/cookiecutter\n\n.. image:: https://travis-ci.org/audreyr/cookiecutter.svg?branch=master\n :target: https://travis-ci.org/audreyr/cookiecutter\n\n.. image:: https://ci.appveyor.com/api/projects/status/github/audreyr/cookiecutter?branch=master\n :target: https://ci.appveyor.com/project/audreyr/cookiecutter/branch/master\n\n.. image:: https://codecov.io/github/audreyr/cookiecutter/coverage.svg?branch=master\n :target: https://codecov.io/github/audreyr/cookiecutter?branch=master\n\n.. image:: https://badges.gitter.im/Join Chat.svg\n :target: https://gitter.im/audreyr/cookiecutter?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge\n\n.. image:: https://readthedocs.org/projects/cookiecutter/badge/?version=latest\n :target: https://readthedocs.org/projects/cookiecutter/?badge=latest\n :alt: Documentation Status\n\n.. image:: https://landscape.io/github/audreyr/cookiecutter/master/landscape.svg?style=flat\n :target: https://landscape.io/github/audreyr/cookiecutter/master\n :alt: Code Health\n\n.. image:: https://img.shields.io/scrutinizer/g/audreyr/cookiecutter.svg\n :target: https://scrutinizer-ci.com/g/audreyr/cookiecutter/?branch=master\n :alt: Scrutinizer Code Quality\n\nA command-line utility that creates projects from **cookiecutters** (project\ntemplates), e.g. creating a Python package project from a Python package project template.\n\n* Documentation: https://cookiecutter.readthedocs.io\n* GitHub: https://github.com/audreyr/cookiecutter\n* PyPI: https://pypi.python.org/pypi/cookiecutter\n* Free and open source software: `BSD license`_\n\n.. image:: https://raw.github.com/audreyr/cookiecutter/3ac078356adf5a1a72042dfe72ebfa4a9cd5ef38/logo/cookiecutter_medium.png\n\nWe are proud to be an open source sponsor of `PyCon 2016`_.\n\nFeatures\n--------\n\nDid someone say features?\n\n* Cross-platform: Windows, Mac, and Linux are officially supported.\n\n* Works with Python 2.7, 3.3, 3.4, 3.5, 3.6, and PyPy. *(But you don't have to\n know/write Python code to use Cookiecutter.)*\n\n* Project templates can be in any programming language or markup format:\n Python, JavaScript, Ruby, CoffeeScript, RST, Markdown, CSS, HTML, you name\n it. You can use multiple languages in the same project template.\n\n* Simple command line usage:\n\n .. code-block:: bash\n\n # Create project from the cookiecutter-pypackage.git repo template\n # You'll be prompted to enter values.\n # Then it'll create your Python package in the current working directory,\n # based on those values.\n $ cookiecutter https://github.com/audreyr/cookiecutter-pypackage\n # For the sake of brevity, repos on GitHub can just use the 'gh' prefix\n $ cookiecutter gh:audreyr/cookiecutter-pypackage\n\n* Use it at the command line with a local template:\n\n .. code-block:: bash\n\n # Create project in the current working directory, from the local\n # cookiecutter-pypackage/ template\n $ cookiecutter cookiecutter-pypackage/\n\n* Or use it from Python:\n\n .. code-block:: python\n\n from cookiecutter.main import cookiecutter\n\n # Create project from the cookiecutter-pypackage/ template\n cookiecutter('cookiecutter-pypackage/')\n\n # Create project from the cookiecutter-pypackage.git repo template\n cookiecutter('https://github.com/audreyr/cookiecutter-pypackage.git')\n\n* Directory names and filenames can be templated. For example::\n\n {{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}.py\n\n* Supports unlimited levels of directory nesting.\n\n* 100% of templating is done with Jinja2. This includes file and directory names.\n\n* Simply define your template variables in a ``cookiecutter.json`` file. For example:\n\n .. code-block:: json\n\n {\n \"full_name\": \"Audrey Roy\",\n \"email\": \"audreyr@gmail.com\",\n \"project_name\": \"Complexity\",\n \"repo_name\": \"complexity\",\n \"project_short_description\": \"Refreshingly simple static site generator.\",\n \"release_date\": \"2013-07-10\",\n \"year\": \"2013\",\n \"version\": \"0.1.1\"\n }\n\n* Unless you suppress it with ``--no-input``, you are prompted for input:\n\n - Prompts are the keys in ``cookiecutter.json``.\n - Default responses are the values in ``cookiecutter.json``.\n - Prompts are shown in order.\n\n* Cross-platform support for ``~/.cookiecutterrc`` files:\n\n .. code-block:: yaml\n\n default_context:\n full_name: \"Audrey Roy\"\n email: \"audreyr@gmail.com\"\n github_username: \"audreyr\"\n cookiecutters_dir: \"~/.cookiecutters/\"\n\n* Cookiecutters (cloned Cookiecutter project templates) are put into\n ``~/.cookiecutters/`` by default, or cookiecutters_dir if specified.\n\n* If you have already cloned a cookiecutter into ``~/.cookiecutters/``, you\n can reference it by directory name:\n\n .. code-block:: bash\n\n # Clone cookiecutter-pypackage\n $ cookiecutter gh:audreyr/cookiecutter-pypackage\n # Now you can use the already cloned cookiecutter by name\n $ cookiecutter cookiecutter-pypackage\n\n* You can use local cookiecutters, or remote cookiecutters directly from Git\n repos or from Mercurial repos on Bitbucket.\n\n* Default context: specify key/value pairs that you want used as defaults\n whenever you generate a project\n\n* Inject extra context with command-line arguments:\n\n .. code-block:: bash\n\n $ cookiecutter --no-input gh:msabramo/cookiecutter-supervisor program_name=foobar startsecs=10\n\n* Direct access to the Cookiecutter API allows for injection of extra context.\n\n* Pre- and post-generate hooks: Python or shell scripts to run before or after\n generating a project.\n\n* Paths to local projects can be specified as absolute or relative.\n\n* Projects are always generated to your current directory.\n\nAvailable Cookiecutters\n-----------------------\n\nMaking great cookies takes a lot of cookiecutters and contributors. We're so\npleased that there are many Cookiecutter project templates to choose from. We\nhope you find a cookiecutter that is just right for your needs.\n\nCookiecutter Specials\n~~~~~~~~~~~~~~~~~~~~~\n\nThese Cookiecutters are maintained by the cookiecutter team:\n\n* `cookiecutter-pypackage`_: `@audreyr`_'s ultimate Python package project\n template.\n* `cookiecutter-django`_: A bleeding edge Django project template with\n Bootstrap 4, customizable users app, starter templates, working user\n registration, celery setup, and much more.\n* `cookiecutter-pytest-plugin`_: Minimal Cookiecutter template for authoring\n `pytest`_ plugins that help you to write better programs.\n\nCategories of Cookiecutters\n~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n`Python`_ |\n`Python-Django`_ |\n`Python-Pyramid`_ |\n`Cookiecutter (meta)`_ |\n`Ansible`_ |\n`Git`_ |\n`C`_ |\n`C++`_ |\n`C#`_ |\n`Common Lisp`_ |\n`Elm`_ |\n`Golang`_ |\n`Java`_ |\n`JS`_ |\n`Kotlin`_ |\n`LaTeX/XeTeX`_ |\n`PHP`_ |\n`Berkshelf-Vagrant`_ |\n`HTML`_ |\n`Scala`_ |\n`6502 Assembly`_ |\n`Data Science`_ |\n`Tornado`_ |\n`Reproducible Science`_ |\n`Continuous Delivery`_\n\nIf you don't find a cookiecutter that suits your needs here, please consider\nwriting or suggesting one. We wish for our users to find a solution for their\nuse cases, and we provide a list of other projects that we do not maintain for\nyour convenience (please see the `Similar Projects`_ section).\n\nCommunity\n---------\n\nThe core committer team is `@audreyr`_, `@pydanny`_, `@michaeljoseph`_,\n`@pfmoore`_, and `@hackebrot`_. We\nwelcome you and invite you to participate.\n\nStuck? Try one of the following:\n\n* See the `Troubleshooting`_ page.\n* Ask for help on `Stack Overflow`_.\n* You are strongly encouraged to `file an issue`_ about the problem, even if\n it's just \"I can't get it to work on this cookiecutter\" with a link to your\n cookiecutter. Don't worry about naming/pinpointing the issue properly.\n* Ask for help on `Gitter`_ if you must (but please try one of the other\n options first, so that others can benefit from the discussion)\n\nDevelopment on Cookiecutter is community-driven:\n\n* Huge thanks to all the `contributors`_ who have pitched in to help make\n Cookiecutter an even better tool.\n* Everyone is invited to contribute. Read the `contributing instructions`_,\n then get started.\n\nConnect with other Cookiecutter contributors and users on `Gitter`_:\n\n* https://gitter.im/audreyr/cookiecutter (note: due to work and commitments,\n a core committer might not always be available)\n\nEncouragement is unbelievably motivating. If you want more work done on\nCookiecutter, show support:\n\n* Thank a core committer for their efforts.\n* Star `Cookiecutter on GitHub`_.\n* `Support this project`_\n\nGot criticism or complaints?\n\n* `File an issue`_ so that Cookiecutter can be improved. Be friendly\n and constructive about what could be better. Make detailed suggestions.\n* **Keep us in the loop so that we can help.** For example, if you are\n discussing problems with Cookiecutter on a mailing list, `file an issue`_\n where you link to the discussion thread and/or cc at least 1 core committer on\n the email.\n* Be encouraging. A comment like \"This function ought to be rewritten like\n this\" is much more likely to result in action than a comment like \"Eww, look\n how bad this function is.\"\n\nWaiting for a response to an issue/question?\n\n* Be patient and persistent. All issues are on the core committer team's radar and\n will be considered thoughtfully, but we have a lot of issues to work through. If\n urgent, it's fine to ping a core committer in the issue with a reminder.\n* Ask others to comment, discuss, review, etc.\n* Search the Cookiecutter repo for issues related to yours.\n* Need a fix/feature/release/help urgently, and can't wait? `@audreyr`_ is\n available for hire for consultation or custom development.\n\nSupport This Project\n--------------------\n\nThis project is run by volunteers. Please support them in their efforts to\nmaintain and improve Cookiecutter:\n\n* Daniel Roy Greenfeld (`@pydanny`_): `patreon.com/danielroygreenfeld`_\n* Raphael Pierzina (`@hackebrot`_): `patreon.com/hackebrot`_\n\n.. _`patreon.com/danielroygreenfeld`: https://www.patreon.com/danielroygreenfeld\n.. _`patreon.com/hackebrot`: https://www.patreon.com/hackebrot\n\nYou can also support the maintainers by spreading the word about Two Scoops of\nDjango 1.11!\n\n.. image:: https://cdn.shopify.com/s/files/1/0304/6901/files/tsd-111-alpha-470x235.jpg?11350964796982104043\n :name: Two Scoops Press\n :align: center\n :alt: Two Scoops Press\n :target: https://www.twoscoopspress.com/products/two-scoops-of-django-1-11\n\nBackers\n-------\n\nWe would like to thank the following people for supporting us:\n\n* Bruno Alla\n* Russell Keith-Magee\n\nCode of Conduct\n---------------\n\nEveryone interacting in the Cookiecutter project's codebases, issue trackers, chat\nrooms, and mailing lists is expected to follow the `PyPA Code of Conduct`_.\n\n----\n\nA Pantry Full of Cookiecutters\n------------------------------\n\nHere is a list of **cookiecutters** (aka Cookiecutter project templates) for\nyou to use or fork.\n\nMake your own, then submit a pull request adding yours to this list!\n\nPython\n~~~~~~\n\n* `cookiecutter-pypackage`_: `@audreyr`_'s ultimate Python package project\n template.\n* `cookiecutter-pipproject`_: Minimal package for pip-installable projects\n* `cookiecutter-pypackage-minimal`_: A minimal Python package template.\n* `cookiecutter-lux-python`_: A boilerplate Python project that aims to create Python package with a convenient Makefile-facility and additional helpers.\n* `cookiecutter-flask`_ : A Flask template with Bootstrap 3, starter templates, and working user registration.\n* `cookiecutter-flask-2`_: A heavier weight fork of cookiecutter-flask, with more boilerplate including forgotten password and Heroku integration\n* `cookiecutter-flask-foundation`_ : Flask Template with caching, forms, sqlalchemy and unit-testing.\n* `cookiecutter-flask-minimal`_ : Minimal but production-ready Flask project template with no other dependencies except for Flask itself.\n* `cookiecutter-bottle`_ : A cookiecutter template for creating reusable Bottle projects quickly.\n* `cookiecutter-openstack`_: A template for an OpenStack project.\n* `cookiecutter-docopt`_: A template for a Python command-line script that uses `docopt`_ for arguments parsing.\n* `cookiecutter-quokka-module`_: A template to create a blueprint module for Quokka Flask CMS.\n* `cookiecutter-kivy`_: A template for NUI applications built upon the kivy python-framework.\n* `cookiedozer`_: A template for Python Kivy apps ready to be deployed to android devices with Buildozer.\n* `cookiecutter-pylibrary`_: An intricate template designed to quickly get started with good testing and packaging (working configuration for Tox, Pytest, Travis-CI, Coveralls, AppVeyor, Sphinx docs, isort, bumpversion, packaging checks etc).\n* `cookiecutter-pyvanguard`_: A template for cutting edge Python development. `Invoke`_, pytest, bumpversion, and Python 2/3 compatibility.\n* `Python-iOS-template`_: A template to create a Python project that will run on iOS devices.\n* `Python-Android-template`_: A template to create a Python project that will run on Android devices.\n* `cookiecutter-tryton`_: A template to create base and external Tryton modules.\n* `cookiecutter-tryton-fulfilio`_: A template for creating tryton modules.\n* `cookiecutter-pytest-plugin`_: Minimal Cookiecutter template for authoring `pytest`_ plugins that help you to write better programs.\n* `cookiecutter-tapioca`_: A Template for building `tapioca-wrapper`_ based web API wrappers (clients).\n* `cookiecutter-muffin`_: A Muffin template with Bootstrap 3, starter templates, and working user registration.\n* `cookiecutter-octoprint-plugin`_: A template for building plugins for `OctoPrint`_.\n* `cookiecutter-funkload-friendly`_: Cookiecutter template for a `funkload-friendly`_ project.\n* `cookiecutter-python-app`_: A template to create a Python CLI application with subcommands, logging, YAML configuration, pytest tests, and Virtualenv deployment.\n* `morepath-cookiecutter`_: Cookiecutter template for Morepath, the web microframework with superpowers.\n* `Springerle/hovercraft-slides`_: A template for new `Hovercraft!`_ presentation projects (``impress.js`` slides in *re*\\ Structured\\ *Text*).\n* `cookiecutter-snakemake-analysis-pipeline`_: One way to easily set up `Snakemake`_-based analysis pipelines.\n* `cookiecutter-py3tkinter`_: Template for Python 3 Tkinter application gui.\n* `cookiecutter-pyqt5`_: A prebuilt PyQt5 GUI template with a fully featured Pytest test suite and Travis CI integration all in an optimal Python package.\n* `cookiecutter-pyqt4`_: A prebuilt PyQt4 GUI template with a logging support, structure for tests and separation of ui and worker components.\n* `cookiecutter-xontrib`_: A template for building xontribs, a.k.a `xonsh`_ contributions\n* `cookiecutter-conda-python`_: A template for building Conda Python packages\n* `cookiecutter-pypackage-rust-cross-platform-publish`_: A template for a Python wheel containing a Rust binary module that supports releasing on Windows, OSX and Linux. \n* `cookiecutter-telegram-bot`_: A template project for Telegram bots with webhooks on CherryPy.\n* `python-project-template`_: A template for Python projects with sophisticated release automation.\n* `cookiecutter-anyblok-project`_: A template for Anyblok based projects.\n\n.. _`cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage\n.. _`cookiecutter-pipproject`: https://github.com/wdm0006/cookiecutter-pipproject\n.. _`cookiecutter-pypackage-minimal`: https://github.com/kragniz/cookiecutter-pypackage-minimal\n.. _`cookiecutter-lux-python`: https://github.com/alexkey/cookiecutter-lux-python\n.. _`cookiecutter-flask`: https://github.com/sloria/cookiecutter-flask\n.. _`cookiecutter-flask-2`: https://github.com/wdm0006/cookiecutter-flask\n.. _`cookiecutter-flask-foundation`: https://github.com/JackStouffer/cookiecutter-Flask-Foundation\n.. _`cookiecutter-flask-minimal`: https://github.com/candidtim/cookiecutter-flask-minimal\n.. _`cookiecutter-bottle`: https://github.com/avelino/cookiecutter-bottle\n.. _`cookiecutter-openstack`: https://github.com/openstack-dev/cookiecutter\n.. _`cookiecutter-docopt`: https://github.com/sloria/cookiecutter-docopt\n.. _`docopt`: http://docopt.org/\n.. _`cookiecutter-quokka-module`: https://github.com/pythonhub/cookiecutter-quokka-module\n.. _`cookiecutter-kivy`: https://github.com/hackebrot/cookiecutter-kivy\n.. _`cookiedozer`: https://github.com/hackebrot/cookiedozer\n.. _`cookiecutter-pylibrary`: https://github.com/ionelmc/cookiecutter-pylibrary\n.. _`cookiecutter-pyvanguard`: https://github.com/robinandeer/cookiecutter-pyvanguard\n.. _`Invoke`: http://docs.pyinvoke.org/en/latest/\n.. _`Python-iOS-template`: https://github.com/pybee/Python-iOS-template\n.. _`Python-Android-template`: https://github.com/pybee/Python-Android-template\n.. _`cookiecutter-tryton`: https://bitbucket.org/tryton/cookiecutter-tryton\n.. _`cookiecutter-tryton-fulfilio`: https://github.com/fulfilio/cookiecutter-tryton\n.. _`cookiecutter-pytest-plugin`: https://github.com/pytest-dev/cookiecutter-pytest-plugin\n.. _`pytest`: http://pytest.org/latest/\n.. _`cookiecutter-tapioca`: https://github.com/vintasoftware/cookiecutter-tapioca\n.. _`tapioca-wrapper`: https://github.com/vintasoftware/tapioca-wrapper\n.. _`cookiecutter-muffin`: https://github.com/drgarcia1986/cookiecutter-muffin\n.. _`cookiecutter-octoprint-plugin`: https://github.com/OctoPrint/cookiecutter-octoprint-plugin\n.. _`OctoPrint`: https://github.com/foosel/OctoPrint\n.. _`cookiecutter-funkload-friendly`: https://github.com/tokibito/cookiecutter-funkload-friendly\n.. _`funkload-friendly`: https://github.com/tokibito/funkload-friendly\n.. _`cookiecutter-python-app`: https://github.com/mdklatt/cookiecutter-python-app\n.. _`morepath-cookiecutter`: https://github.com/morepath/morepath-cookiecutter\n.. _`Springerle/hovercraft-slides`: https://github.com/Springerle/hovercraft-slides\n.. _`Hovercraft!`: https://hovercraft.readthedocs.io/\n.. _`cookiecutter-snakemake-analysis-pipeline`: https://github.com/xguse/cookiecutter-snakemake-analysis-pipeline\n.. _`Snakemake`: https://bitbucket.org/snakemake/snakemake/wiki/Home\n.. _`cookiecutter-py3tkinter`: https://github.com/ivanlyon/cookiecutter-py3tkinter\n.. _`cookiecutter-pyqt5`: https://github.com/mandeepbhutani/cookiecutter-pyqt5\n.. _`cookiecutter-pyqt4`: https://github.com/aeroaks/cookiecutter-pyqt4\n.. _`cookiecutter-xontrib`: https://github.com/laerus/cookiecutter-xontrib\n.. _`xonsh`: https://github.com/xonsh/xonsh\n.. _`cookiecutter-conda-python`: https://github.com/conda/cookiecutter-conda-python\n.. _`cookiecutter-pypackage-rust-cross-platform-publish`: https://github.com/mckaymatt/cookiecutter-pypackage-rust-cross-platform-publish\n.. _`cookiecutter-telegram-bot`: https://github.com/Ars2014/cookiecutter-telegram-bot\n.. _`python-project-template`: https://github.com/Kwpolska/python-project-template\n.. _`cookiecutter-anyblok-project`: https://github.com/AnyBlok/cookiecutter-anyblok-project\n\nPython-Django\n^^^^^^^^^^^^^\n\n* `cookiecutter-django`_: A bleeding edge Django project template with Bootstrap 4, customizable users app, starter templates, working user registration, celery setup, and much more.\n* `cookiecutter-django-rest`_: For creating REST apis for mobile and web applications.\n* `cookiecutter-simple-django`_: A cookiecutter template for creating reusable Django projects quickly.\n* `django-docker-bootstrap`_: Django development/production environment with docker, integrated with Postgres, NodeJS(React), Nginx, uWSGI.\n* `cookiecutter-djangopackage`_: A template designed to create reusable third-party PyPI friendly Django apps. Documentation is written in tutorial format.\n* `cookiecutter-django-cms`_: A template for Django CMS with simple Bootstrap 3 template. It has a quick start and deploy documentation.\n* `cookiecutter-django-crud`_: A template to create a Django app with boilerplate CRUD around a model including a factory and tests.\n* `cookiecutter-django-lborgav`_: Another cookiecutter template for Django project with Bootstrap 3 and FontAwesome 4\n* `cookiecutter-django-paas`_: Django template ready to use in PAAS platforms like Heroku, OpenShift, etc..\n* `cookiecutter-django-rest-framework`_: A template for creating reusable Django REST Framework packages.\n* `cookiecutter-django-aws-eb`_: Get up and running with Django on AWS Elastic Beanstalk.\n* `cookiecutter-wagtail`_ : A cookiecutter template for `Wagtail`_ CMS based sites.\n* `wagtail-cookiecutter-foundation`_: A complete template for Wagtail CMS projects featuring `Zurb Foundation`_ 6, ansible provisioning and deployment , front-end dependency management with bower, modular apps to get your site up and running including photo_gallery, RSS feed etc.\n* `django-starter`_: A Django template complete with vagrant and provisioning scripts - inspired by 12 factor apps and cookiecutter-django.\n* `cookiecutter-django-gulp`_: A Cookiecutter template for integrating frontend development tools in Django projects.\n* `wagtail-starter-kit`_: A cookiecutter complete with wagtail, django layout, vagrant, provisioning scripts, front end build system and more!\n* `cookiecutter-django-herokuapp`_: A Django 1.7+ template optimized for Python 3 on Heroku.\n* `cookiecutter-simple-django-cn`_: A simple Django templates for chinese.\n* `cc_django_ember_app`_: For creating applications with Django and EmberJS\n* `cc_project_app_drf`_: For creating REST apis based on the \"project app\" project architecture\n* `cc_project_app_full_with_hooks`_: For creating Django projects using the \"project app\" project architecture\n* `cc-automated-drf-template`_: A template + script that automatically creates your Django REST project with serializers, views, urls, and admin files based on your models file as input.\n* `cookiecutter-django-foundation`_: Fork of `cookiecutter-django`_ based on `Zurb Foundation`_ 6 front-end framework\n* `cookiecutter-django-ansible`_: Cookiecutter Django Ansible is a framework for jumpstarting an ansible project for provisioning a server that is ready for your *cookiecutter-django* application.\n* `wemake-django-template`_: Bleeding edge Django template focused on code quality and security.\n\n.. _`cookiecutter-django`: https://github.com/pydanny/cookiecutter-django\n.. _`cookiecutter-django-rest`: https://github.com/agconti/cookiecutter-django-rest\n.. _`cookiecutter-simple-django`: https://github.com/marcofucci/cookiecutter-simple-django\n.. _`django-docker-bootstrap`: https://github.com/legios89/django-docker-bootstrap\n.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage\n.. _`cookiecutter-django-cms`: https://github.com/palazzem/cookiecutter-django-cms\n.. _`cookiecutter-django-crud`: https://github.com/wildfish/cookiecutter-django-crud\n.. _`cookiecutter-django-lborgav`: https://github.com/lborgav/cookiecutter-django\n.. _`cookiecutter-django-paas`: https://github.com/pbacterio/cookiecutter-django-paas\n.. _`cookiecutter-django-rest-framework`: https://github.com/jpadilla/cookiecutter-django-rest-framework\n.. _`cookiecutter-django-aws-eb`: https://github.com/dolphinkiss/cookiecutter-django-aws-eb\n.. _`cookiecutter-wagtail`: https://github.com/torchbox/cookiecutter-wagtail\n.. _`Wagtail`: https://github.com/torchbox/wagtail\n.. _`wagtail-cookiecutter-foundation`: https://github.com/chrisdev/wagtail-cookiecutter-foundation\n.. _`django-starter`: https://github.com/tkjone/django-starter\n.. _`cookiecutter-django-gulp`: https://github.com/valerymelou/cookiecutter-django-gulp\n.. _`wagtail-starter-kit`: https://github.com/tkjone/wagtail-starter-kit\n.. _`cookiecutter-django-herokuapp`: https://github.com/dulaccc/cookiecutter-django-herokuapp\n.. _`cookiecutter-simple-django-cn`: https://github.com/shenyushun/cookiecutter-simple-django-cn\n.. _`cc_django_ember_app`: https://bitbucket.org/levit_scs/cc_django_ember_app\n.. _`cc_project_app_drf`: https://bitbucket.org/levit_scs/cc_project_app_drf\n.. _`cc_project_app_full_with_hooks`: https://bitbucket.org/levit_scs/cc_project_app_full_with_hooks\n.. _`cc-automated-drf-template`: https://github.com/TAMU-CPT/cc-automated-drf-template\n.. _`cookiecutter-django-foundation`: https://github.com/Parbhat/cookiecutter-django-foundation\n.. _`Zurb Foundation`: http://foundation.zurb.com\n.. _`cookiecutter-django-ansible`: https://github.com/HackSoftware/cookiecutter-django-ansible\n.. _`wemake-django-template`: https://github.com/wemake-services/wemake-django-template\n\nPython-Pyramid\n^^^^^^^^^^^^^^\n\n* `pyramid-cookiecutter-alchemy`_: A Cookiecutter (project template) for creating a Pyramid project using SQLite for persistent storage, SQLAlchemy for an ORM, URL dispatch for routing, and Jinja2 for templating.\n* `pyramid-cookiecutter-starter`_: A Cookiecutter (project template) for creating a Pyramid starter project using URL dispatch for routing and either Jinja2, Chameleon, or Mako for templating.\n* `pyramid-cookiecutter-zodb`_: A Cookiecutter (project template) for creating a Pyramid project using ZODB for persistent storage, traversal for routing, and Chameleon for templating.\n* `substanced-cookiecutter`_: A cookiecutter (project template) for creating a Substance D starter project. Substance D is built on top of Pyramid.\n* `cookiecutter-pyramid-talk-python-starter`_: An opinionated Cookiecutter template for creating Pyramid web applications starting way further down the development chain. This cookiecutter template will create a new Pyramid web application with email, sqlalchemy, rollbar, and way more integrated.\n\n.. _`pyramid-cookiecutter-alchemy`: https://github.com/Pylons/pyramid-cookiecutter-alchemy\n.. _`pyramid-cookiecutter-starter`: https://github.com/Pylons/pyramid-cookiecutter-starter\n.. _`pyramid-cookiecutter-zodb`: https://github.com/Pylons/pyramid-cookiecutter-zodb\n.. _`substanced-cookiecutter`: https://github.com/Pylons/substanced-cookiecutter\n.. _`cookiecutter-pyramid-talk-python-starter`: https://github.com/mikeckennedy/cookiecutter-pyramid-talk-python-starter\n\nCookiecutter (meta)\n~~~~~~~~~~~~~~~~~~~\n\nMeta-templates for generating Cookiecutter project templates.\n\n* `cookiecutter-template`_: A template to help in creating cookiecutter templates.\n\n.. _`cookiecutter-template`: https://github.com/eviweb/cookiecutter-template\n\n* `cookie-cookie`_: A project template for... project templates...\n\n.. _`cookie-cookie`: https://github.com/tuxredux/cookie-cookie\n\nAnsible\n~~~~~~~\n\n* `cookiecutter-molecule`_: Create `Molecule`_ roles following community best practices, with an already implemented test infrastructure leveraging `Molecule`_, Docker and Testinfra.\n* `cookiecutter-ansible-role`_: A template to create ansible roles. Forget about file creation and focus on actions.\n* `cookiecutter-ansible-role-ci`_: Create Ansible roles following best practices, with an already implemented test infrastructure leveraging Test-kitchen, Docker and InSpec.\n\n.. _`cookiecutter-ansible-role`: https://github.com/iknite/cookiecutter-ansible-role\n.. _`cookiecutter-ansible-role-ci`: https://github.com/ferrarimarco/cookiecutter-ansible-role\n.. _`cookiecutter-molecule`: https://github.com/retr0h/cookiecutter-molecule\n\n.. _`Molecule`: http://molecule.readthedocs.io/en/v2/\n\nGit\n~~~\n\n* `cookiecutter-git`_: A git repository project template!\n\n.. _`cookiecutter-git`: https://github.com/tuxredux/cookiecutter-git\n\n\nC\n~~\n\n* `bootstrap.c`_: A template for simple projects written in C with autotools.\n* `cookiecutter-avr`_: A template for avr development.\n\n.. _`bootstrap.c`: https://github.com/vincentbernat/bootstrap.c\n.. _`cookiecutter-avr`: https://github.com/solarnz/cookiecutter-avr\n\n\nC++\n~~~\n\n* `BoilerplatePP`_: A simple cmake template with unit testing for projects written in C++.\n* `cookiecutter-dpf-effect`_: An audio plugin project template for the DISTRHO Plugin Framework (DPF)\n* `cookiecutter-dpf-audiotk`_: An audio plugin project template for the DISTRHO Plugin Framework (DPF) and the Audio Toolkit (ATK) DSP library\n* `cookiecutter-kata-gtest`_: A template for C++ test-driven development katas using the Google Test framework.\n* `cookiecutter-kata-cpputest`_: A template for C++ test-driven-development katas using the CppUTest framework.\n\n.. _`BoilerplatePP`: https://github.com/Paspartout/BoilerplatePP\n.. _cookiecutter-dpf-effect: https://github.com/SpotlightKid/cookiecutter-dpf-effect\n.. _cookiecutter-dpf-audiotk: https://github.com/SpotlightKid/cookiecutter-dpf-audiotk\n.. _cookiecutter-kata-gtest: https://github.com/13coders/cookiecutter-kata-gtest\n.. _cookiecutter-kata-cpputest: https://github.com/13coders/cookiecutter-kata-cpputest\n\n\nC#\n~~\n\n* `cookiecutter-csharp-objc-binding`_: A template for generating a C# binding project for binding an Objective-C static library.\n\n.. _`cookiecutter-csharp-objc-binding`: https://github.com/SandyChapman/cookiecutter-csharp-objc-binding\n\n\nCommon Lisp\n~~~~~~~~~~~\n\n* `cookiecutter-cl-project`_: A template for Common Lisp project with bootstrap script and Slime integration.\n\n.. _`cookiecutter-cl-project`: https://github.com/svetlyak40wt/cookiecutter-cl-project\n\nElm\n~~~\n\n* `cookiecutter-elm`_: Elm based cookiecutter with basic html example.\n\n.. _`cookiecutter-elm`: https://github.com/m-x-k/cookiecutter-elm.git\n\n\nGolang\n~~~~~~\n\n* `cookiecutter-golang`_: A template to create new go based projects following best practices.\n\n.. _`cookiecutter-golang`: https://github.com/lacion/cookiecutter-golang\n\nJava\n~~~~\n\n* `cookiecutter-java`_: Cookiecutter for basic java application setup with gradle\n* `cookiecutter-spring-boot`_: Cookiecutter for standard java spring boot gradle application\n* `cookiecutter-android`_: Cookiecutter for Gradle-based Android projects\n\n.. _`cookiecutter-java`: https://github.com/m-x-k/cookiecutter-java.git\n.. _`cookiecutter-spring-boot`: https://github.com/m-x-k/cookiecutter-spring-boot.git\n.. _`cookiecutter-android`: https://github.com/alexfu/cookiecutter-android\n\n\nJS\n~~\n\n* `cookiecutter-es6-boilerplate`_: A cookiecutter for front end projects in ES6.\n* `cookiecutter-webpack`_: A template for webpack 2 projects with hot reloading, babel es6 modules, and react.\n* `cookiecutter-jquery`_: A jQuery plugin project template based on jQuery\n Boilerplate.\n* `cookiecutter-jswidget`_: A project template for creating a generic front-end,\n non-jQuery JS widget packaged for multiple JS packaging systems.\n* `cookiecutter-component`_: A template for a Component JS package.\n* `cookiecutter-tampermonkey`_: A template for a TamperMonkey browser script.\n* `cookiecutter-es6-package`_: A template for writing node packages using ES6 via babel.\n* `cookiecutter-angular2`_: A template for modular angular2 with typescript apps.\n* `CICADA`_: A template + script that automatically creates list/detail controllers and partials for an AngularJS frontend to connect to a DRF backend. Works well with `cc-automated-drf-template `__.\n\n.. _`cookiecutter-es6-boilerplate`: https://github.com/agconti/cookiecutter-es6-boilerplate\n.. _`cookiecutter-webpack`: https://github.com/hzdg/cookiecutter-webpack\n.. _`cookiecutter-jquery`: https://github.com/audreyr/cookiecutter-jquery\n.. _`cookiecutter-jswidget`: https://github.com/audreyr/cookiecutter-jswidget\n.. _`cookiecutter-component`: https://github.com/audreyr/cookiecutter-component\n.. _`cookiecutter-tampermonkey`: https://github.com/christabor/cookiecutter-tampermonkey\n.. _`cookiecutter-es6-package`: https://github.com/ratson/cookiecutter-es6-package\n.. _`cookiecutter-angular2`: https://github.com/matheuspoleza/cookiecutter-angular2\n.. _`CICADA`: https://github.com/TAMU-CPT/CICADA\n\nKotlin\n~~~~~~\n\n* `cookiecutter-kotlin-gradle`_: A bare-bones template for Gradle-based Kotlin projects.\n\n.. _`cookiecutter-kotlin-gradle`: https://github.com/thomaslee/cookiecutter-kotlin-gradle\n\n\nLaTeX/XeTeX\n~~~~~~~~~~~\n\n* `pandoc-talk`_: A cookiecutter template for giving talks with pandoc and XeTeX.\n* `cookiecutter-latex-article`_: A LaTeX template geared towards academic use.\n* `cookiecutter-beamer`_: A template for a LaTeX Beamer presentation.\n\n.. _`pandoc-talk`: https://github.com/larsyencken/pandoc-talk\n.. _`cookiecutter-latex-article`: https://github.com/Kreger51/cookiecutter-latex-article\n.. _`cookiecutter-beamer`: https://github.com/luismartingil/cookiecutter-beamer\n\n\nPHP\n~~~\n\n* `cookiecutter-mediawiki-extension`_: A template for MediaWiki extensions.\n\n.. _`cookiecutter-mediawiki-extension`: https://github.com/JonasGroeger/cookiecutter-mediawiki-extension\n\n\nSublime Text\n~~~~~~~~~~~~\n\n* `cookiecutter-sublime-text-3-plugin`_: Sublime Text 3 plugin template with custom settings, commands, key bindings and main menu.\n* `sublime-snippet-package-template`_: Template for Sublime Text packages containing snippets.\n\n.. _`cookiecutter-sublime-text-3-plugin`: https://github.com/kkujawinski/cookiecutter-sublime-text-3-plugin\n.. _`sublime-snippet-package-template`: https://github.com/agenoria/sublime-snippet-package-template\n\nBerkshelf-Vagrant\n~~~~~~~~~~~~~~~~~\n\n* `slim-berkshelf-vagrant`_: A simple cookiecutter template with sane cookbook defaults for common vagrant/berkshelf cookbooks.\n\n.. _`slim-berkshelf-vagrant`: https://github.com/mahmoudimus/cookiecutter-slim-berkshelf-vagrant\n\n\nHTML\n~~~~\n\n* `cookiecutter-complexity`_: A cookiecutter for a Complexity static site with Bootstrap 3.\n* `cookiecutter-reveal.js`_: A cookiecutter template for reveal.js presentations.\n* `cookiecutter-tumblr-theme`_: A cookiecutter for a Tumblr theme project with GruntJS as concatenation tool.\n\n.. _`cookiecutter-complexity`: https://github.com/audreyr/cookiecutter-complexity\n.. _`cookiecutter-reveal.js`: https://github.com/keimlink/cookiecutter-reveal.js\n.. _`cookiecutter-tumblr-theme`: https://github.com/relekang/cookiecutter-tumblr-theme\n\n\nScala\n~~~~~\n\n* `cookiecutter-scala`_: A cookiecutter template for a simple scala hello world application with a few libraries.\n* `cookiecutter-scala-spark`_: A cookiecutter template for Apache Spark applications written in Scala.\n\n.. _`cookiecutter-scala`: https://github.com/Plippe/cookiecutter-scala\n.. _`cookiecutter-scala-spark`: https://github.com/jpzk/cookiecutter-scala-spark\n\n\n6502 Assembly\n~~~~~~~~~~~~~\n* `cookiecutter-atari2600`_: A cookiecutter template for Atari2600 projects.\n\n.. _`cookiecutter-atari2600`: https://github.com/joeyjoejoejr/cookiecutter-atari2600\n\nData Science\n~~~~~~~~~~~~\n\n* `widget-cookiecutter`_: A cookiecutter template for creating a custom Jupyter widget project.\n* `cookiecutter-data-science`_: A logical, reasonably standardized, but flexible project structure for doing and sharing data science work in Python. Full documentation available `here `__.\n* `cookiecutter-r-data-analysis`_: Template for a R based workflow to docx (via Pandoc) and pdf (via LaTeX) reports.\n\n.. _`widget-cookiecutter`: https://github.com/jupyter/widget-cookiecutter\n.. _`cookiecutter-data-science`: https://github.com/drivendata/cookiecutter-data-science\n.. _`cookiecutter-r-data-analysis`: https://github.com/bdcaf/cookiecutter-r-data-analysis\n\nReproducible Science\n~~~~~~~~~~~~~~~~~~~~\n\n* `cookiecutter-reproducible-science`_: A cookiecutter template to start a reproducible and transparent science project including data, models, analysis, and reports (i.e., your scientific paper) with close resemblances to the philosophy of Cookiecutter `Data Science`_.\n\n.. _`cookiecutter-reproducible-science`: https://github.com/mkrapp/cookiecutter-reproducible-science\n\nContinuous Delivery\n~~~~~~~~~~~~~~~~~~~\n\n* `painless-continuous-delivery`_: A cookiecutter template for software development setups with continuous delivery baked in. Python (Django, Flask), and experimental PHP support.\n* `cookiecutter-devenv`_: A template to add a development and ci environment to an existing project.\n\n.. _`painless-continuous-delivery`: https://github.com/painless-software/painless-continuous-delivery\n.. _`cookiecutter-devenv`: https://bitbucket.org/greenguavalabs/cookiecutter-devenv.git\n\nCloud Tools\n~~~~~~~~~~~~\n\n* `cookiecutter-tf-module`_: Cookiecutter template for building consistent Terraform modules.\n\n.. _`cookiecutter-tf-module`: https://github.com/DualSpark/cookiecutter-tf-module\n\nTornado\n~~~~~~~\n\n* `cookiecutter-tornado`_: Cookiecutter template for Tornado based projects\n\n.. _`cookiecutter-tornado`: https://github.com/hkage/cookiecutter-tornado\n\nOther\n~~~~~\n\n* `cookiecutter_dotfile`_: Template for a folder of dotfiles managed by stow.\n* `cookiecutter-raml`_: Template for RAML v1.0 API documents.\n\n\n.. _`cookiecutter_dotfile`: https://github.com/bdcaf/cookiecutter_dotfile\n.. _`cookiecutter-raml`: https://github.com/genzj/cookiecutter-raml\n\n\nSimilar projects\n----------------\n\n* `Paste`_ has a create option that creates a skeleton project.\n\n* `Diecutter`_: an API service that will give you back a configuration file from\n a template and variables.\n\n* `Django`_'s `startproject` and `startapp` commands can take in a `--template`\n option.\n\n* `python-packager`_: Creates Python packages from its own template, with\n configurable options.\n\n* `Yeoman`_ has a Rails-inspired generator system that provides scaffolding\n for apps.\n\n* `Pyramid`_'s `pcreate` command for creating Pyramid projects from scaffold templates.\n\n* `mr.bob`_ is a filesystem template renderer, meant to deprecate tools such as\n paster and templer.\n\n* `grunt-init`_ used to be built into Grunt and is now a standalone scaffolding tool\n to automate project creation.\n\n* `scaffolt`_ consumes JSON generators with Handlebars support.\n\n* `init-skeleton`_ clones or copies a repository, executes npm install and bower install and removes the .git directory.\n\n* `Cog`_ python-based code generation toolkit developed by Ned Batchelder\n\n* `Skaffold`_ python and json config based django/MVC generator, with some add-ons and integrations.\n\n.. _`Paste`: http://pythonpaste.org/script/#paster-create\n.. _`Diecutter`: https://github.com/novagile/diecutter\n.. _`Django`: https://docs.djangoproject.com/en/1.9/ref/django-admin/#cmdoption-startapp--template\n.. _`python-packager`: https://github.com/fcurella/python-packager\n.. _`Yeoman`: https://github.com/yeoman/generator\n.. _`Pyramid`: http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/scaffolding.html\n.. _`mr.bob`: https://github.com/iElectric/mr.bob\n.. _`grunt-init`: https://github.com/gruntjs/grunt-init\n.. _`scaffolt`: https://github.com/paulmillr/scaffolt\n.. _`init-skeleton`: https://github.com/paulmillr/init-skeleton\n.. _`Cog`: https://bitbucket.org/ned/cog\n.. _`Skaffold`: https://github.com/christabor/Skaffold\n\n.. _`PyPA Code of Conduct`: https://www.pypa.io/en/latest/code-of-conduct/\n.. _`PyCon 2016`: https://us.pycon.org/2016/sponsors/\n.. _`BSD license`: https://github.com/audreyr/cookiecutter/blob/master/LICENSE\n\n.. _`Cookiecutter on GitHub`: https://github.com/audreyr/cookiecutter\n.. _`Troubleshooting`: http://cookiecutter.readthedocs.io/en/latest/troubleshooting.html\n.. _`contributors`: https://github.com/audreyr/cookiecutter/blob/master/AUTHORS.rst\n.. _`contributing instructions`: https://github.com/audreyr/cookiecutter/blob/master/CONTRIBUTING.rst\n.. _`Stack Overflow`: http://stackoverflow.com/\n.. _`File an issue`: https://github.com/audreyr/cookiecutter/issues?state=open\n.. _`@audreyr`: https://github.com/audreyr\n.. _`@pydanny`: https://github.com/pydanny\n.. _`@michaeljoseph`: https://github.com/michaeljoseph\n.. _`@pfmoore`: https://github.com/pfmoore\n.. _`@hackebrot`: https://github.com/hackebrot\n.. _`Gitter`: https://gitter.im/audreyr/cookiecutter\n\n\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/audreyr/cookiecutter", "keywords": "cookiecutter,Python,projects,project templates,Jinja2,skeleton,scaffolding,project directory,setup.py,package,packaging", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "cookiecutter", "package_url": "https://pypi.org/project/cookiecutter/", "platform": "", "project_url": "https://pypi.org/project/cookiecutter/", "project_urls": { "Homepage": "https://github.com/audreyr/cookiecutter" }, "release_url": "https://pypi.org/project/cookiecutter/1.6.0/", "requires_dist": [ "future (>=0.15.2)", "binaryornot (>=0.2.0)", "jinja2 (>=2.7)", "click (>=5.0)", "whichcraft (>=0.4.0)", "poyo (>=0.1.0)", "jinja2-time (>=0.1.0)", "requests (>=2.18.0)" ], "requires_python": "", "summary": "A command-line utility that creates projects from project templates, e.g. creating a Python package project from a Python package project template.", "version": "1.6.0" }, "last_serial": 3252021, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "1d873c734425ba9c067b8d66df7050a8", "sha256": "392f935687673be725deb862aff1ab3fcedf450534f6702193d5f13b10d32f27" }, "downloads": -1, "filename": "cookiecutter-0.1.tar.gz", "has_sig": false, "md5_digest": "1d873c734425ba9c067b8d66df7050a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3028, "upload_time": "2013-07-14T19:23:20", "url": "https://files.pythonhosted.org/packages/11/7e/152ec7068ded6531f0112110a3f67b9143bcb7306038a90724c38a20e39e/cookiecutter-0.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "39591223fd515654c0c33e51f7c10d13", "sha256": "645c1e5efdc9c30ccfc7969d3bd099ef7434d320b82764b721de745bf1a32e18" }, "downloads": -1, "filename": "cookiecutter-0.2.tar.gz", "has_sig": false, "md5_digest": "39591223fd515654c0c33e51f7c10d13", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3310, "upload_time": "2013-07-16T22:58:43", "url": "https://files.pythonhosted.org/packages/5d/75/e1bb94e335a5e9dbf670f26862de42eb0ff433e8859d51b762805e0f8d11/cookiecutter-0.2.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "3b270cbd8fac2e8f0f2933380414b73b", "sha256": "dfb2a0b81145efd398d721ab017dc90ff603e81cd491c60196ab26518dd15092" }, "downloads": -1, "filename": "cookiecutter-0.2.1.tar.gz", "has_sig": false, "md5_digest": "3b270cbd8fac2e8f0f2933380414b73b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5292, "upload_time": "2013-07-16T23:21:33", "url": "https://files.pythonhosted.org/packages/76/98/8055677d91c4e82387b8e6cd32ab2ed3db51b165932bab60970dff094399/cookiecutter-0.2.1.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "8297b3bfd255ab499323c00191a398d8", "sha256": "8559f497154977e9182bce03187757d19cb6f107f8e1b846670dba9580e7323f" }, "downloads": -1, "filename": "cookiecutter-0.3.tar.gz", "has_sig": false, "md5_digest": "8297b3bfd255ab499323c00191a398d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5783, "upload_time": "2013-07-17T09:18:55", "url": "https://files.pythonhosted.org/packages/58/d2/8329c8339a14694c241263e8596f65aec4738d1022f2e031dbb3c59c5cd4/cookiecutter-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "eaf85444da2d20e8f2bd8527a541879b", "sha256": "fca4f73cbb04eecc3f696482e1e2971785c81957aeb5ae6d8121b0fdefec9e55" }, "downloads": -1, "filename": "cookiecutter-0.4.tar.gz", "has_sig": false, "md5_digest": "eaf85444da2d20e8f2bd8527a541879b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6417, "upload_time": "2013-07-21T22:28:46", "url": "https://files.pythonhosted.org/packages/30/f2/8fb8743e6d96177b00598711031a5811893e92ff0e18660f96de2df28690/cookiecutter-0.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "fc9a858c5dab5f98502f07732686d30e", "sha256": "f290f0744bf788c227bff93fd19f2a188846442bf6bda4990a33d36ccc56abad" }, "downloads": -1, "filename": "cookiecutter-0.5.tar.gz", "has_sig": false, "md5_digest": "fc9a858c5dab5f98502f07732686d30e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9082, "upload_time": "2013-07-28T14:33:56", "url": "https://files.pythonhosted.org/packages/35/41/26f9f1c4c8f944f95899a3b658bb3f7df679203ef11c5bf06074de9dd33f/cookiecutter-0.5.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "ee87bf3c21b8be1d0b5bb3ea2cae40f2", "sha256": "e542074707ebd12310fbe4fec278d393dce6231f20fca80b72194b6855f7204b" }, "downloads": -1, "filename": "cookiecutter-0.6.0.tar.gz", "has_sig": false, "md5_digest": "ee87bf3c21b8be1d0b5bb3ea2cae40f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10490, "upload_time": "2013-08-08T11:12:40", "url": "https://files.pythonhosted.org/packages/7e/2f/6cec23b9a1cc33bd7ff1b7db8a79da8c856d327eeb14eee438e6588fcd6b/cookiecutter-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "7fe8fe92a828c9cef5da6f1ca4ac2f6e", "sha256": "32572f9f52ed79c6bcaf6ce21958997c3f46f2d24226c81b663e939fac83249d" }, "downloads": -1, "filename": "cookiecutter-0.6.1.tar.gz", "has_sig": false, "md5_digest": "7fe8fe92a828c9cef5da6f1ca4ac2f6e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10824, "upload_time": "2013-08-12T12:59:40", "url": "https://files.pythonhosted.org/packages/14/fd/313af3e34692f76b5b4352c4da755efb61ba8eee4b65fdf21c711b42aee9/cookiecutter-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "11543cd3a4194a3feeaa0b5c93e2168d", "sha256": "2078bcc6195fe75e7775567e0bc5d0c6f617dd476197c62037b5479397ff1cd1" }, "downloads": -1, "filename": "cookiecutter-0.6.2.tar.gz", "has_sig": false, "md5_digest": "11543cd3a4194a3feeaa0b5c93e2168d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11642, "upload_time": "2013-08-19T22:11:28", "url": "https://files.pythonhosted.org/packages/f1/f6/490dd3047d35c299d8f91128c63ca6d66111f10730375a705ce75f1a607d/cookiecutter-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "f91bfb1d7e517dedd78aaea20b4433f5", "sha256": "6c65f0e8927f6a8629aac2f9134bc99a035cd6a385730357fbaa720c28188f49" }, "downloads": -1, "filename": "cookiecutter-0.6.3.tar.gz", "has_sig": false, "md5_digest": "f91bfb1d7e517dedd78aaea20b4433f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11821, "upload_time": "2013-08-20T10:10:30", "url": "https://files.pythonhosted.org/packages/bb/a3/4f30b8cadc3fea55525395edd1cdc317d01de88b98c5f813af3807a21973/cookiecutter-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "c62ea87a3fc698b9f0a6a135c82ad9b0", "sha256": "4733d9bd47a24f69781949cee3470a0a4b979c194902b5048520601b41dc3cbb" }, "downloads": -1, "filename": "cookiecutter-0.6.4.tar.gz", "has_sig": false, "md5_digest": "c62ea87a3fc698b9f0a6a135c82ad9b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12195, "upload_time": "2013-08-21T10:34:49", "url": "https://files.pythonhosted.org/packages/d2/bc/af4de132cc8a96c4b5f2f6bd18ac3a8ae6caa900fe3175b4499a8f75d651/cookiecutter-0.6.4.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "5f1d2df78589210ef1765b69908b6319", "sha256": "2469ea8cfc1a3677126a511ab95c3af415765502449d67fb6b32c200bef75ce2" }, "downloads": -1, "filename": "cookiecutter-0.7.0.tar.gz", "has_sig": false, "md5_digest": "5f1d2df78589210ef1765b69908b6319", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23881, "upload_time": "2013-11-10T05:45:08", "url": "https://files.pythonhosted.org/packages/f7/c9/920833836a4c1a39b23bd85599863f89d56f5c226ffed3fa62e9ccac72b5/cookiecutter-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "4c8092638f8cc87cc9fd535c40898ed7", "sha256": "268b8ed0375c1d2e34ec35cafdf202a976109e795e71f40818dc8b796983c68d" }, "downloads": -1, "filename": "cookiecutter-0.7.1.tar.gz", "has_sig": false, "md5_digest": "4c8092638f8cc87cc9fd535c40898ed7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95627, "upload_time": "2014-04-26T23:20:40", "url": "https://files.pythonhosted.org/packages/33/78/399932c12a861ee0d7362cb3fa98fa841c139aba71f169a5a0163c5daae5/cookiecutter-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "9201ca32ddd8e3ad4e43f8d822e78371", "sha256": "85e7640b5a95400f39d7acf62b2ce2861dd4e200bf3128b4669a21c3e05b8927" }, "downloads": -1, "filename": "cookiecutter-0.7.2.tar.gz", "has_sig": false, "md5_digest": "9201ca32ddd8e3ad4e43f8d822e78371", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 107271, "upload_time": "2014-08-06T02:21:23", "url": "https://files.pythonhosted.org/packages/85/ba/139e8f13862c956a9324b975ade9ff0a48c22c15c852d809e33cd89aa978/cookiecutter-0.7.2.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "c4cf2cae448f51eaabec0166c242ab79", "sha256": "33242d568cae2e86e22f34ad9fea03e3b7d14725c70fcc235e7e8aad4645101a" }, "downloads": -1, "filename": "cookiecutter-0.8.0.tar.gz", "has_sig": false, "md5_digest": "c4cf2cae448f51eaabec0166c242ab79", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 110221, "upload_time": "2014-10-30T19:19:24", "url": "https://files.pythonhosted.org/packages/28/b3/d0330ae80e0d7c2eb013b99c9afba0aad5527f74e1c667d16ac4f1695855/cookiecutter-0.8.0.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "d51fa0af0eb44836868f73b3d1f46ece", "sha256": "f2304997bce4534b280915386fb947af22dd4124bf9155356a73593174591bee" }, "downloads": -1, "filename": "cookiecutter-0.9.0.tar.gz", "has_sig": false, "md5_digest": "d51fa0af0eb44836868f73b3d1f46ece", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115389, "upload_time": "2015-01-12T15:37:46", "url": "https://files.pythonhosted.org/packages/85/71/2c5ccfd6877e994e02cbcedada541a59513f9551d90ca7603bbe453bcde7/cookiecutter-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "ea02caabba54412eb94f8bd0ac8c9ef8", "sha256": "e2dcd9dc0404df045df02dc8b590bb1c5e7f157eb48a71ec06c962be03970e35" }, "downloads": -1, "filename": "cookiecutter-0.9.1.tar.gz", "has_sig": false, "md5_digest": "ea02caabba54412eb94f8bd0ac8c9ef8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 116578, "upload_time": "2015-01-20T20:47:11", "url": "https://files.pythonhosted.org/packages/11/46/0ce3a69fb67f59ca068bc22f59ab7ce3ba56be32d0b4faf96c1cab247448/cookiecutter-0.9.1.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "ab352c89ed67c95698e1945ca0aeed15", "sha256": "ec6ad26fbc5c68453b6e7434fafa2d7b251fb95e8519c5c35046e037ed8ddf6f" }, "downloads": -1, "filename": "cookiecutter-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ab352c89ed67c95698e1945ca0aeed15", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 37840, "upload_time": "2015-03-16T00:53:54", "url": "https://files.pythonhosted.org/packages/91/fc/1521133f5785f19eb8738d59e33013980f9b32e09be793d6e54859f90082/cookiecutter-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4174591b310812a6e61cfea9655c3c6f", "sha256": "ebe8bc662dce0a26effc2a0fb344e5006832aef4cedb9c6a950a1e0e3f3f41fb" }, "downloads": -1, "filename": "cookiecutter-1.0.0.tar.gz", "has_sig": false, "md5_digest": "4174591b310812a6e61cfea9655c3c6f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 123571, "upload_time": "2015-03-16T00:53:51", "url": "https://files.pythonhosted.org/packages/db/33/1ed1278b8c87a32acfc428af91d239a5c6b10c27fc34367fc6bb0570025e/cookiecutter-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "8ad16e6277043866213524c24f3652f2", "sha256": "bb8b4a9aa5c3d01b8c72c30588ad5ef45dbffe3a1256cdb850a3fe55cc9648b9" }, "downloads": -1, "filename": "cookiecutter-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8ad16e6277043866213524c24f3652f2", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 42809, "upload_time": "2015-09-26T21:41:17", "url": "https://files.pythonhosted.org/packages/27/2f/31cb0cf32074550dad5a55ce5d280d87f2181bce35acd03bb89497b5989e/cookiecutter-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a4b765d3e1020eca5eca14b3bee46e6b", "sha256": "8a503098ae97825b51499b973849daecc34d4a2223a30b73bed0b7543a9f63dc" }, "downloads": -1, "filename": "cookiecutter-1.1.0.tar.gz", "has_sig": false, "md5_digest": "a4b765d3e1020eca5eca14b3bee46e6b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 138378, "upload_time": "2015-09-26T21:41:12", "url": "https://files.pythonhosted.org/packages/50/9f/fb399dce43a0461187bb4ed1031336a861a99f0c0413007ee35a9f2f6254/cookiecutter-1.1.0.tar.gz" } ], "1.2.0": [], "1.2.1": [ { "comment_text": "", "digests": { "md5": "4d206a13870750ba7e13f3bba11662c5", "sha256": "86c9dc67ba296196a3a20e592b58b8c0fc67ba89206391e29b7668fcd0b65e59" }, "downloads": -1, "filename": "cookiecutter-1.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4d206a13870750ba7e13f3bba11662c5", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 43968, "upload_time": "2015-10-18T21:54:53", "url": "https://files.pythonhosted.org/packages/a6/61/cf381305e6d296100239c42fa1f164cac86d0f4e9b1360765fa27135c655/cookiecutter-1.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "92b704a191fba64dd4eef93c667d83b5", "sha256": "010fc76091484a2cb6a35ab68d8f69298443cdf8509d1626ef0ae81c8619be2a" }, "downloads": -1, "filename": "cookiecutter-1.2.1.tar.gz", "has_sig": false, "md5_digest": "92b704a191fba64dd4eef93c667d83b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 140853, "upload_time": "2015-10-18T21:54:36", "url": "https://files.pythonhosted.org/packages/6e/38/7cc8b5f9b8f6443cedbfe60f33290570c0545c7007e84dc88077b23c8b7d/cookiecutter-1.2.1.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "6a4443442d8e841ed766b090b2b716b7", "sha256": "c02393d8d976b29f1654447000e269cd072f676ac2345d8261fc7a6c9d93149d" }, "downloads": -1, "filename": "cookiecutter-1.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6a4443442d8e841ed766b090b2b716b7", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 46876, "upload_time": "2015-11-10T23:21:28", "url": "https://files.pythonhosted.org/packages/91/c8/79a443bad25422b9ba8edcf3486a3db5077c7a802acf126f77112506af8a/cookiecutter-1.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2350e11092a8ea6bed0df59697f77375", "sha256": "80723bf1aeac1bec673df71c5372a9c470ba720592d3340a8c1285c3f5ecf669" }, "downloads": -1, "filename": "cookiecutter-1.3.0.tar.gz", "has_sig": false, "md5_digest": "2350e11092a8ea6bed0df59697f77375", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 147613, "upload_time": "2015-11-10T23:20:51", "url": "https://files.pythonhosted.org/packages/2a/05/fd579d477b6b170d88ebb72297a11f21c3d873b58b921cf567ce09cfee2a/cookiecutter-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "350773552e34e5e2854f8186a1965a3a", "sha256": "b10b2065df46daa86972127c94591990bb70c4ff51fe6367d33e6fc30a0ecb30" }, "downloads": -1, "filename": "cookiecutter-1.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "350773552e34e5e2854f8186a1965a3a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 51857, "upload_time": "2016-03-20T17:32:43", "url": "https://files.pythonhosted.org/packages/18/07/942237937b9f25e17a5c56cb3cc989522a4c4e733a36b68d116ac44b4040/cookiecutter-1.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "baf71f8dbe2a493e9746520e3562a931", "sha256": "0b4d52480f9acfc5d9435abffe9eae053f509ed9388470fc51e961345afc6bed" }, "downloads": -1, "filename": "cookiecutter-1.4.0.tar.gz", "has_sig": false, "md5_digest": "baf71f8dbe2a493e9746520e3562a931", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 157972, "upload_time": "2016-03-20T17:32:57", "url": "https://files.pythonhosted.org/packages/d5/78/eb3cbda4f936a0a7d8feb5240706309ed7777a5249387b8c89916fff9d3a/cookiecutter-1.4.0.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "6c818b378ccdbcac8c67df6f03cc0177", "sha256": "aee53f810b5ae8ef964c3d7031c130998bd529eb6662200a10100aee314eb983" }, "downloads": -1, "filename": "cookiecutter-1.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6c818b378ccdbcac8c67df6f03cc0177", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 43626, "upload_time": "2016-12-18T21:29:22", "url": "https://files.pythonhosted.org/packages/ca/94/b8b939da2272588f8d771e68984996ea2c2c19a8a2c2d3995a35e3e92baa/cookiecutter-1.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1f85b72a6ebaed03435327340f7b73af", "sha256": "ffe041891781615b06cb2c231029333eb6fca85562f7190661cb25e08e4fab61" }, "downloads": -1, "filename": "cookiecutter-1.5.0.tar.gz", "has_sig": false, "md5_digest": "1f85b72a6ebaed03435327340f7b73af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 165783, "upload_time": "2016-12-18T21:29:25", "url": "https://files.pythonhosted.org/packages/16/5b/55ae57c2271cd0fb0577d491f67ba15aeb9a0897ccf944581f6dae0140de/cookiecutter-1.5.0.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "356a11424abeeae51ae693a7e9b479e7", "sha256": "7d95c48717c725580b4ea6d80a7256479990ab8309003e60695ea1877c296fc9" }, "downloads": -1, "filename": "cookiecutter-1.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "356a11424abeeae51ae693a7e9b479e7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 44620, "upload_time": "2017-02-04T18:28:54", "url": "https://files.pythonhosted.org/packages/1e/81/d7b35a841837b122f6dd6ee77445d2b1c44f2415e441e0b76a7f80258b9d/cookiecutter-1.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "efdf7d3d971a68ffc5f01b328394c726", "sha256": "3fcb10dbfe4da02bf779a88f96109c1a28ff68f42d87587788f841735820249c" }, "downloads": -1, "filename": "cookiecutter-1.5.1.tar.gz", "has_sig": false, "md5_digest": "efdf7d3d971a68ffc5f01b328394c726", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 167927, "upload_time": "2017-02-04T18:28:56", "url": "https://files.pythonhosted.org/packages/97/ed/8f0b6f36c119e5083fb789ffa7c1169d98b15d5b3123b105207e46fb9026/cookiecutter-1.5.1.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "483b17949185d0fe356bc832dd0e4aa0", "sha256": "ed8f54a8fc79b6864020d773ce11539b5f08e4617f353de1f22d23226f6a0d36" }, "downloads": -1, "filename": "cookiecutter-1.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "483b17949185d0fe356bc832dd0e4aa0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 50129, "upload_time": "2017-10-15T19:08:09", "url": "https://files.pythonhosted.org/packages/16/99/1ca3a75978270288354f419e9166666801cf7e7d8df984de44a7d5d8b8d0/cookiecutter-1.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "838ee4ee8825bda052eed493b4109c75", "sha256": "1316a52e1c1f08db0c9efbf7d876dbc01463a74b155a0d83e722be88beda9a3e" }, "downloads": -1, "filename": "cookiecutter-1.6.0.tar.gz", "has_sig": false, "md5_digest": "838ee4ee8825bda052eed493b4109c75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 181753, "upload_time": "2017-10-15T19:08:12", "url": "https://files.pythonhosted.org/packages/b5/97/581470d950361dd15b4009218420409ecc42ff1a5523544b945ac310b029/cookiecutter-1.6.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "483b17949185d0fe356bc832dd0e4aa0", "sha256": "ed8f54a8fc79b6864020d773ce11539b5f08e4617f353de1f22d23226f6a0d36" }, "downloads": -1, "filename": "cookiecutter-1.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "483b17949185d0fe356bc832dd0e4aa0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 50129, "upload_time": "2017-10-15T19:08:09", "url": "https://files.pythonhosted.org/packages/16/99/1ca3a75978270288354f419e9166666801cf7e7d8df984de44a7d5d8b8d0/cookiecutter-1.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "838ee4ee8825bda052eed493b4109c75", "sha256": "1316a52e1c1f08db0c9efbf7d876dbc01463a74b155a0d83e722be88beda9a3e" }, "downloads": -1, "filename": "cookiecutter-1.6.0.tar.gz", "has_sig": false, "md5_digest": "838ee4ee8825bda052eed493b4109c75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 181753, "upload_time": "2017-10-15T19:08:12", "url": "https://files.pythonhosted.org/packages/b5/97/581470d950361dd15b4009218420409ecc42ff1a5523544b945ac310b029/cookiecutter-1.6.0.tar.gz" } ] }