chore: auto-install bleach & swapper
This commit is contained in:
parent
48c58f7d55
commit
16b0d5b29b
2 changed files with 3 additions and 2 deletions
|
@ -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.
|
||||
|
|
2
setup.py
2
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",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue