Skip to content

Commit

Permalink
Changes for compatibility with awscli v2
Browse files Browse the repository at this point in the history
- Move module out of awscli.plugins namespace
- Add an explicit dependency on boto3
  • Loading branch information
drewish authored and Andrew Morton committed Oct 11, 2021
1 parent fef8f40 commit ccbe15e
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ to the services that will be notified.

```bash
$ pip3 install https://github.com/merckgroup/awscli-s3touch/archive/master.zip
$ aws configure set plugins.name awscli.plugins.s3touch
$ aws configure set plugins.s3touch s3touch

# alternatively, edit ~/.aws/config and add the plugin manually
[plugins]
name = awscli.plugins.s3touch
s3touch = s3touch
```

## Synopsis
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
description='Simulate S3 events without re-uploading a file.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
packages = ['awscli.plugins.s3touch'],
packages = ['s3touch'],
package_dir={'':'src'},
version = '0.1.0',
install_requires=['awscli'],
install_requires=['awscli', 'boto3'],
author='EMD Group (emdgroup.com)',
url='https://github.com/merckgroup/awscli-s3touch',
license='Apache License 2.0',
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit ccbe15e

Please sign in to comment.