Metadata-Version: 2.0
Name: pyup-django
Version: 0.3.0
Summary: pyup-django checks your installed dependencies for known security vulnerabilities and displays them in the admin area.
Home-page: https://github.com/pyupio/pyup-django
Author: pyup.io
Author-email: support@pyup.io
License: MIT license
Keywords: pyup_django
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: packaging
Requires-Dist: requests

*Note: pyup-django is currently in its early stages. It's probably no even installable and likely that there are some false positives and missing packages.*

[![PyPi](https://img.shields.io/pypi/v/pyup-django.svg)](https://pypi.python.org/pypi/pyup-django)
[![Travis](https://img.shields.io/travis/pyupio/pyup-django.svg)](https://travis-ci.org/pyupio/pyup-django)

# About

Checks your installed Django release for known security vulnerabilities and displays a warning in the admin area.

# Installation

Install `pyup-django` with pip:

```
pip install pyup-django
```

and add it to your `INSTALLED_APPS`, before `django.contrib.admin`

```
INSTALLED_APPS = [
    'pyup_django',
    'django.contrib.admin',
]
```

# Screenshots

![secure](secure.png)
![insecure](insecure.png)

# Support

If you are using `pyup-django` in one of your projects, please consider getting a paid
[pyup.io](https://pyup.io) account. This is what makes projects like this possible.


