From 4eedf000250a9267b9e40646f0f4e32ceef3298f Mon Sep 17 00:00:00 2001 From: Stefan Wojcik Date: Tue, 17 Jan 2017 02:42:23 -0500 Subject: [PATCH] nicer readme note about dependencies --- README.rst | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/README.rst b/README.rst index e42fd3ea..fa872afd 100644 --- a/README.rst +++ b/README.rst @@ -35,16 +35,20 @@ setup.py install``. Dependencies ============ -- pymongo>=2.7.1 -- sphinx (optional - for documentation generation) +All of the dependencies can easily be installed via `pip `_. -Optional Dependencies ---------------------- -- **Image Fields**: Pillow>=2.0.0 +Bare minimum you need to use this package: +- pymongo>=2.7.1 +- six>=1.10.0 + +If you utilize a ``DateTimeField`` and want to use a more flexible date parser: - dateutil>=2.1.0 -.. note - MongoEngine always runs it's test suite against the latest patch version of each dependecy. e.g.: PyMongo 3.0.1 +If you to utilize an ``ImageField`` or ``ImageGridFsProxy``: +- Pillow>=2.0.0 + +If you want to generate the documentation (e.g. to contribute to it): +- sphinx Examples ========