Merge pull request #260 from seleniumbase/update-virtualenv-script-and-manifest

Update virtualenv script and manifest
This commit is contained in:
Michael Mintz 2018-12-26 19:32:21 -05:00 committed by GitHub
commit be60c286d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 19 additions and 15 deletions

View File

@ -4,6 +4,10 @@ include setup.cfg
include .travis.yml
include .gitignore
include requirements.txt
include install.sh
include install.bat
include virtualenv_install.sh
include virtualenv_install.bat
include seleniumbase/core/create_db_tables.sql
include seleniumbase/utilities/selenium_grid/grid-hub
include seleniumbase/utilities/selenium_grid/grid-node

View File

@ -17,7 +17,7 @@ except IOError:
setup(
name='seleniumbase',
version='1.17.16',
version='1.17.17',
description='Reliable Browser Automation and Testing Framework',
long_description=long_description,
long_description_content_type='text/markdown',

View File

@ -5,17 +5,17 @@
python -m pip install --upgrade virtualenv
python -m pip install --upgrade virtualenvwrapper-win
echo ""
echo ""
echo "*** You may now use virtualenv commands in your command shell. ***"
echo ""
echo "virtualenv commands:"
echo " * 'mkvirtualenv [ENV_NAME]' - Create a Python virtual environment"
echo " * 'deactivate' - Exit the current virtual environment"
echo " * 'workon [ENV_NAME]' - Enter an existing virtual environment"
echo " * 'lsvirtualenv' OR 'workon' - List all virtual environments"
echo " * 'rmvirtualenv [ENV_NAME]' - Delete a virtual environment"
echo ""
echo "Example:"
echo " mkvirtualenv seleniumbase "
echo ""
echo:
echo:
echo: *** You may now use virtualenv commands in your command shell. ***
echo:
echo: virtualenv commands:
echo: * "mkvirtualenv [ENV_NAME]" - Create a Python virtual environment
echo: * "deactivate" - Exit the current virtual environment
echo: * "workon [ENV_NAME]" - Enter an existing virtual environment
echo: * "lsvirtualenv" OR "workon" - List all virtual environments
echo: * "rmvirtualenv [ENV_NAME]" - Delete a virtual environment
echo:
echo: Example:
echo: mkvirtualenv seleniumbase
echo: