diff --git a/README.md b/README.md index 533221c..51df4d6 100644 --- a/README.md +++ b/README.md @@ -25,9 +25,10 @@ assignment application for Django, designed to be dropped into an existing site * Python 3.6+ * jQuery (full version, not "slim", for drag/drop prioritization) * Bootstrap (to work with provided templates, though you can override them) -* bleach (`pip install bleach`) * django-autocomplete-light (optional, required for task merging) +Note that **unidecode**, **bleach** and **swapper** will be installed with this package. + ## Overview We assume that your organization has multiple groups of employees, each with multiple users (where actual users and groups map to Django Users and Groups). Users may belong to multiple groups, and each group can have multiple todo lists. diff --git a/setup.py b/setup.py index e72efac..05f03ee 100755 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ setup( packages=find_packages(), # Finds modules with an __init__.py include_package_data=True, # Pulls in non-module data from MANIFEST.in python_requires=">=3.5", - install_requires=["unidecode"], + install_requires=["unidecode", "bleach", "swapper"], project_urls={ "Demo Site": "http://django-todo.org", "Bug Reports": "https://github.com/shacker/django-todo/issues",