Metadata-Version: 2.0
Name: safety-django
Version: 0.1.1
Summary: safety-django checks your installed dependencies for known security vulnerabilities and displays them in the admin area.
Home-page: https://github.com/pyupio/safety_django
Author: pyup.io
Author-email: support@pyup.io
License: MIT license
Keywords: safety_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: safety

*Note: safety-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/safety-django.svg)](https://pypi.python.org/pypi/safety-django)
[![Travis](https://img.shields.io/travis/pyupio/safety-django.svg)](https://travis-ci.org/pyupio/safety-django)

# About

Safety for Django checks your installed dependencies for known security vulnerabilities and displays them in the admin area.

# Installation

Install `safety-django` with pip:

```
pip install safety-django
```

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

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

# Screenshots

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

# Support

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


