diff --git a/Makefile b/Makefile index bf0db73..9512481 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ help: ## See what commands are available. @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36mmake %-15s\033[0m # %s\n", $$1, $$2}' init: clean-pyc ## Install dependencies and initialise for development. - pip install -e .[testing,docs] -U + pip install -e . -U python ./tests/testapp/manage.py migrate start: ## Starts the development server. diff --git a/setup.py b/setup.py index ff5905f..de5b1fc 100644 --- a/setup.py +++ b/setup.py @@ -12,14 +12,6 @@ 'wagtail>=1.12,<2.0', ] -# Testing dependencies -testing_extras = [ -] - -# Documentation dependencies -documentation_extras = [ -] - setup( name='wagtailembedder', version='1.2', @@ -48,8 +40,4 @@ 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', ], install_requires=install_requires, - extras_require={ - 'testing': testing_extras, - 'docs': documentation_extras - }, )