All Projects → jpadilla → Cookiecutter Django Rest Framework

jpadilla / Cookiecutter Django Rest Framework

A cookiecutter template for creating reusable Django REST Framework packages quickly.

Programming Languages

python
139335 projects - #7 most used programming language

cookiecutter-django-rest-framework

A cookiecutter template for creating reusable Django REST Framework packages with the best practices quickly.

Features

  • Travis CI configuration
  • Tox configuration
  • Sane setup.py for easy PyPI registration/distribution
  • BSD licensed by default

Usage

$ pip install cookiecutter
$ cookiecutter gh:jpadilla/cookiecutter-django-rest-framework

You'll be prompted for some questions, answer them, then it will create a cookiecutter-django-rest-framework with your new package.

Example

Warning: After this point, change 'José Padilla', 'jpadilla', etc to your own information.

full_name (default is "Your full name here")? José Padilla
email (default is "[email protected]")? [email protected]
github_username (default is "yourname")? jpadilla
pypi_project_name (default is "dj-package")? drf-things
repo_name (default is "dj-package")? drf-things
app_name (default is "djpackage")? drfthings
project_short_description (default is "Your project description goes here")?
year (default is "2014")?
version (default is "0.1.0")?

Enter the project and take a look around:

$ cd drf-things/
$ ls

Create a GitHub repo and push it there:

$ git init
$ git add .
$ git commit -m "first commit"
$ git remote add origin [email protected]:jpadilla/drf-things.git
$ git push -u origin master

Register on PyPI

$ python setup.py register

New release on PyPI

$ python setup.py publish
You probably want to also tag the version now:
      git tag -a 0.1.0 -m 'version 0.1.0'
      git push --tags
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].