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.
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.
It’s pure Python and as a result it works great on all platforms.
It’s only a local build tool and not a deployment tool and neither is this project.
It supports Python 3 and so does this project.
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
File details
Details for the file pynt-of-django-0.3.2.tar.gz
.
File metadata
- Download URL: pynt-of-django-0.3.2.tar.gz
- Upload date:
- Size: 12.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1f46212fd2912485aa0f416ff238036769426d1adc47279c641bd85ef0666635 |
|
MD5 | 9f8265b452f1ba9828257fc71a48f9b9 |
|
BLAKE2b-256 | 4038b32e8b0122b2fffea0771a1fdc53bb81312bff5f7dcac7bcefdde7c59ed6 |