Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Commit

Permalink
Change package name to 'conjur' and fix encoding error (#272)
Browse files Browse the repository at this point in the history
Changes the name of the package that will be pushed to Pypi and fixes a failure on decoding README when pushing to Pypi. The README had an invalid character and this commit fixes that.
  • Loading branch information
sigalsax authored Apr 12, 2021
1 parent bc5b294 commit a847bf6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Changed
- The CLI and SDK now use a system's native credential store to save credentials instead of a netrc file by default.
If a store is not available, the credentials will be saved to the netrc as a fallback. [cyberark/conjur-api-python3#NO]()
- The invocation of the CLI when installed from Pypi has changed from `conjur-cli` to `conjur`. [cyberark/conjur-api-python3#NO]()
- The CLI/SDK package pushed to Pypi has changed from `conjur-client` to `conjur`. [cyberark/conjur-api-python3#NO]()
- The .conjurrc parameters have been renamed from `account` to `conjur_account` and from `appliance_url` to `conjur_url`.
Additionally, the plugins parameter has been removed. This is a breaking change for users who generate their own
.conjurrc file for use in the SDK and will need to update accordingly.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ To avoid unanticipated breaking changes, make sure that you stay up-to-date on o
latest releases and review the project's [CHANGELOG.md](CHANGELOG.md).

```
$ pip3 install conjur-client
$ pip3 install conjur
$ conjur --help
```
Expand Down Expand Up @@ -227,7 +227,7 @@ For example: `client.list({'kind': 'user', 'inspect': True})`
| kind | Filter resources by specified kind (user, host, layer, group, policy, variable, or webservice) |
| limit | Limit list of resources to specified number |
| offset | Skip specified number of resources |
| role | Retrieve list of resources that specified role is entitled to see (must specify roles full ID) |
| role | Retrieve list of resources that specified role is entitled to see (must specify role's full ID) |
| search | Search for resources based on specified query |
| inspect | List the metadata for resources |

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
long_description = readme_file.read()

setup(
name="conjur-client",
name="conjur",
version=VERSION_DATA['__version__'],
python_requires='>=3.5',
packages=find_packages(),
packages=find_packages(exclude=("test")),
zip_safe=True,

scripts=['pkg_bin/conjur'],
Expand Down

0 comments on commit a847bf6

Please sign in to comment.