diff --git a/README.md b/README.md index 60b474d..0d9a83c 100644 --- a/README.md +++ b/README.md @@ -79,14 +79,15 @@ pip install -r requirements-tox.txt # depending on your system. # Run the test suite with the versions of python you have installed -tox -e py27,py34 +tox -e py27,py34 --develop # Alternatively, if you're using something like pyenv and can easily install # Multiple versions of python, then try running the following command -tox +tox --develop # If for some reason you need to recreate the tox environment (e.g. a new -# dependency has been added since you last ran it, add the -r flag to the -# tox command) +# dependency has been added since you last ran it, you run `tox` without the +# `--develop` flag), add the -r flag to the tox command + tox -r {...additional flags...} ``` diff --git a/setup.py b/setup.py index e460ddf..c561e0d 100644 --- a/setup.py +++ b/setup.py @@ -30,8 +30,12 @@ setup( name='graphene_file_upload', - packages=['graphene_file_upload'], # this must be the same as the name above - version='1.1.0', + packages=[ + 'graphene_file_upload', # this must be the same as the name above + 'graphene_file_upload.flask', + 'graphene_file_upload.django', + ], + version='1.2.0', description='Lib for adding file upload functionality to GraphQL mutations in Graphene Django and Flask-Graphql', long_description=long_description, long_description_content_type='text/x-rst', diff --git a/tox.ini b/tox.ini index 24c376e..a7a9956 100644 --- a/tox.ini +++ b/tox.ini @@ -7,7 +7,6 @@ envlist = py27, py34, py35, py36, py37 [testenv] -usedevelop = True deps = .[test] commands =