From 42f25b11414506e804b96041340f8a6da738001a Mon Sep 17 00:00:00 2001 From: Jan-Jelle Kester Date: Wed, 23 Oct 2013 17:56:14 +0200 Subject: [PATCH] Release on PyPI --- MANIFEST | 8 ++++++++ README.md | 6 ++++-- 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 MANIFEST diff --git a/MANIFEST b/MANIFEST new file mode 100644 index 0000000..0a4480d --- /dev/null +++ b/MANIFEST @@ -0,0 +1,8 @@ +# file GENERATED by distutils, do NOT edit +setup.py +src/auditlog/__init__.py +src/auditlog/diff.py +src/auditlog/middleware.py +src/auditlog/models.py +src/auditlog/receivers.py +src/auditlog/registry.py diff --git a/README.md b/README.md index 145e0e8..8ee43ab 100644 --- a/README.md +++ b/README.md @@ -10,9 +10,11 @@ Auditlog provides a log of changes made to a model instance. It also saves the u Installation ------------ -Auditlog is not yet on Pypi, but will be there once I find it stable enough. +The easiest way to install Auditlog is from PyPI (https://pypi.python.org/pypi/django-auditlog/). If you have ```pip``` installed, you can simply run the following command: -The current recommended installation is to clone the git repository (or download the zipped files) and copy the ```src/auditlog``` directory into your Django project. +```pip install django-auditlog``` + +You can also clone the git repository (or download the zipped files) and run ```setup.py``` or copy the ```src/auditlog``` directory into your Django project. You can enable Auditlog by simply adding ```'auditlog'``` to your ```INSTALLED_APPS``` setting in your project's ```settings.py``` file.