Metadata-Version: 2.1
Name: pyawscli
Version: 0.0.4
Summary: A CLI package in python to interact with AWS services
Home-page: https://github.com/darshan-raul/Python-Package-for-CLI
Author: Darshan Raul
Author-email: cloudforteskills@gmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: awscli (<2.0.0,>=1.16.10)
Requires-Dist: boto3 (<2.0.0,>=1.9.0)
Requires-Dist: pyfiglet (<0.8,>=0.7)
Requires-Dist: PyInquirer (>=1.0.3)

# Python CLI for AWS

This package can be used to get a CLI interface for interacting with AWS services.

## Instructions to install

> pip install aws_python_cli

## References

- https://dzone.com/articles/executable-package-pip-install
- https://python-packaging.readthedocs.io/en/latest/minimal.html

## Pypi uploading instructions:

```
sudo python -m pip install --upgrade pip setuptools wheel
sudo python -m pip install tqdm
sudo python -m pip install  --upgrade twine
```

- Create wheel file

```
python setup.py bdist_wheel
```

- Test in Local machine:
```
python -m pip install dist/<wheel name>
```

- Create .pypric file in home directory

```
[distutils] 
index-servers=pypi
[pypi] 
repository = https://upload.pypi.org/legacy/ 
username =<username>
```


- Upload to pypi:

```
python -m twine upload dist/*
```

> python setup.py register is depricated now no need to use it

