Commit 2f47c8d6 by Osvaldo Cordova Aburto Committed by Sébastien Eustace

Fix references to poet, see issue #13 (#41)

* Fix references to poet, see issue #13

* Fix C0122 pylint issue, we should always compare variable == value and not viceversa
parent 2bb1da6e
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
Poetry helps you declare, manage and install dependencies of Python projects, Poetry helps you declare, manage and install dependencies of Python projects,
ensuring you have the right stack everywhere. ensuring you have the right stack everywhere.
![Poet Install](https://raw.githubusercontent.com/sdispater/poetry/master/assets/install.gif) ![Poetry Install](https://raw.githubusercontent.com/sdispater/poetry/master/assets/install.gif)
Also, be aware that the features described here are the goal that this library is aiming Also, be aware that the features described here are the goal that this library is aiming
for and, as of now, not all of them are implemented (but most of them are). for and, as of now, not all of them are implemented (but most of them are).
...@@ -51,7 +51,7 @@ which might cause conflicts. ...@@ -51,7 +51,7 @@ which might cause conflicts.
### Enable tab completion for Bash, Fish, or Zsh ### Enable tab completion for Bash, Fish, or Zsh
`poetry` supports generating completion scripts for Bash, Fish, and Zsh. `poetry` supports generating completion scripts for Bash, Fish, and Zsh.
See `poet help completions` for full details, but the gist is as simple as using one of the following: See `poetry help completions` for full details, but the gist is as simple as using one of the following:
```bash ```bash
# Bash # Bash
...@@ -540,7 +540,7 @@ A list of keywords (max: 5) that the package is related to. **Optional** ...@@ -540,7 +540,7 @@ A list of keywords (max: 5) that the package is related to. **Optional**
A list of patterns that will be included in the final package. A list of patterns that will be included in the final package.
You can explicitly specify to Poet that a set of globs should be ignored or included for the purposes of packaging. You can explicitly specify to Poetry that a set of globs should be ignored or included for the purposes of packaging.
The globs specified in the exclude field identify a set of files that are not included when a package is built. The globs specified in the exclude field identify a set of files that are not included when a package is built.
If a VCS is being used for a package, the exclude field will be seeded with the VCS’ ignore settings (`.gitignore` for git for example). If a VCS is being used for a package, the exclude field will be seeded with the VCS’ ignore settings (`.gitignore` for git for example).
...@@ -718,8 +718,8 @@ pgsql = ["psycopg2"] ...@@ -718,8 +718,8 @@ pgsql = ["psycopg2"]
When installing packages, you can specify extras by using the `-E|--extras` option: When installing packages, you can specify extras by using the `-E|--extras` option:
```bash ```bash
poet install --extras "mysql pgsql" poetry install --extras "mysql pgsql"
poet install -E mysql -E pgsql poetry install -E mysql -E pgsql
``` ```
### `plugins` ### `plugins`
......
...@@ -8,7 +8,7 @@ TESTS_DEFAULT = u"""from {package_name} import __version__ ...@@ -8,7 +8,7 @@ TESTS_DEFAULT = u"""from {package_name} import __version__
def test_version(): def test_version():
assert '{version}' == __version__ assert __version__ == '{version}'
""" """
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment