diff --git a/README.md b/README.md index d3bf626..668ee33 100644 --- a/README.md +++ b/README.md @@ -98,11 +98,7 @@ To install, There are two distributions of the `ecli` 1. python package: Installed via - `pip3 install https://github.com/berttejeda/bert.ecli.git`
- Note: To install a specific version of the tool, - suffix the git URL in above command
- with @{ tag name }, as with: - https://github.com/berttejeda/bert.ecli.git@1.4.4 + `pip3 install bertdotecli` 1. The Windows bundled executable, available via [Releases](https://github.com/berttejeda/bert.ecli/releases)
Note that the bundled executable can be slow to initialize.
This is because python itself is bundled into the ecli binary
@@ -117,7 +113,7 @@ pip3 install \ --trusted-host=pypi.org \ --trusted-host=github.com \ --trusted-host=files.pythonhosted.org \ -https://github.com/berttejeda/bert.ecli.git +bertdotecli ``` The next section will cover Plugins. diff --git a/setup.py b/setup.py index f31d985..055a70f 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ def package_files(directory): sys.exit() setup( - name='ecli', + name='bertdotecli', version='1.4.4', packages=find_packages(), include_package_data=True,