Skip to content

Commit

Permalink
Remove empty extras preventing upload to pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
Loic Teixeira committed Apr 4, 2018
1 parent 897521a commit c858e24
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 13 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
12 changes: 0 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,6 @@
'wagtail>=1.12,<2.0',
]

# Testing dependencies
testing_extras = [
]

# Documentation dependencies
documentation_extras = [
]

setup(
name='wagtailembedder',
version='1.2',
Expand Down Expand Up @@ -48,8 +40,4 @@
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
install_requires=install_requires,
extras_require={
'testing': testing_extras,
'docs': documentation_extras
},
)

0 comments on commit c858e24

Please sign in to comment.