diff --git a/CHANGES.rst b/CHANGES.rst index 2003ea2..ab4b18f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,13 @@ Version History =============================================================================== +Version: 1.5.11 +------------------------------------------------------------------------------- + +ENHANCEMENTS: + +* Enable wrapper execution using the **main** method instead of the **behavex** executable: **"python -m behavex -t / ..."** + Version: 1.5.10 ------------------------------------------------------------------------------- diff --git a/behavex/__main__.py b/behavex/__main__.py new file mode 100644 index 0000000..3019099 --- /dev/null +++ b/behavex/__main__.py @@ -0,0 +1,4 @@ +from behavex.runner import main + +if __name__ == "__main__": + main() diff --git a/setup.py b/setup.py index 1ac8a75..40bc0ad 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='behavex', - version='1.5.10', + version='1.5.11', python_requires='>=3.5', author='Hernan Rey', author_email='behavex_users@googlegroups.com',