Skip to main content

A companion library for using pynt, a build tool, with Django projects.

Project description

This library provides a set of pre-built tasks for your, pynt based, build.py along with supporting utility and project specific functions.

Build Status

Install

  • pip install pynt-of-django

Usage

From within your build.py, setup pyntofdjango.

import os
import pyntofdjango
pyntofdjango.setup_pod(os.path.abspath(__file__))

Import any tasks you may need. See pyntofdjango’s build.py for a full list.

from pyntofdjango.tasks import create_venv, manage, test_nose

Now you should see your new tasks on the command line.

pynt -l

Additional Tools

You are likely to run into cases that the canned tasks don’t cover. Or maybe they are close but not exactly what you want. For this the lower level functions may be useful when building your own pynt tasks.

There is a project module containing functions specific to your project.

from pyntofdjango import project

As well as a utils module containing general utility functions.

from pyntofdjango import utils

About

This project builds on the basic way to use virtualenv, where the virtualenv folder (called venv) is placed within the project and ignored by the repo.

Why an in-project virtualenv?

The most important bit is that it allows devs to get going with your project without worrying about virtualenv all the time. There are more reasons and there are disadvantages. Christopher Webber has an explitive filled presentation on some of the reasons in-project virtualenvs may be your style.

Why not use [my favorite build tool]?

Pynt is very simple but nice for that same reason.

  1. It’s pure Python and as a result it works great on all platforms.

  2. It’s only a local build tool and not a deployment tool and neither is this project.

  3. It supports Python 3 and so does this project.

  4. It makes for a cool companion project name.

History

0.3.2 (2018-02-09)

  • Removed Django installation requirement

0.3.1 (2018-02-09)

  • Fixed issue with manage.py being found in .tox

0.3.0 (2015-08-07)

  • Most commands wrapping an underlying executable now accept both positional and named (–foo=bar) shell arguments.

  • create_venv now uses –no-site-packages for venv by default

  • test_tox is working again

  • clean works again, also cross platform compliant

  • Now using pyntcontrib functions where possible

0.2.0 (2015-02-01)

  • test_* and manage related tasks now pass along args to underlying commands.

  • For safety: delete_venv task now refuses to delete a dir larger than a max of ~500mb

0.1.0 (2014-11-16)

  • First release on PyPI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pynt-of-django-0.3.2.tar.gz (12.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page