Skip to content

Commit

Permalink
0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
z0ph committed Apr 11, 2021
1 parent 5699a89 commit 42d7595
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/publishtopypi.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Manually Publish Python 🐍 package 📦 to PyPI

on:
push:
branches:
- dev
workflow_dispatch:

jobs:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
setup(
name = 'aa-policy-validator', # How you named your package folder (MyLib)
packages = ['aa-policy-validator'], # Chose the same as "name"
version = '0.5', # Start with a small number and increase it with every change you make
version = '0.6', # Start with a small number and increase it with every change you make
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
description = 'Run AWS Access Analyzer Policy Validation against all your IAM Policies (account-wide)', # Give a short description about your library
long_description=long_description,
long_description_content_type='text/markdown',
author = 'Victor GRENU', # Type in your name
author_email = '[email protected]', # Type in your E-Mail
url = 'https://github.com/z0ph/aa-policy-validator', # Provide either the link to your github or to your website
download_url = 'https://github.com/z0ph/aa-policy-validator/archive/refs/tags/0.5.tar.gz', # I explain this later on
download_url = 'https://github.com/z0ph/aa-policy-validator/archive/refs/tags/0.6.tar.gz', # I explain this later on
keywords = ['AWS', 'IAM', 'AccessAnalyzer', 'PolicyValidation'], # Keywords that define your package best
install_requires=[ # I get to this in a second
'boto3==1.17.27',
Expand Down

0 comments on commit 42d7595

Please sign in to comment.