Metadata-Version: 2.1
Name: devops-automation
Version: 0.1.0
Summary: Librería para la automatización de tareas DevOps
Home-page: https://github.com/s7n5c4n/devops_automation
Author: s7n5c4n
Author-email: cr.hachim2.0@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: docker
Requires-Dist: requests

# DevOps Automation Library

A comprehensive library designed to simplify DevOps task automation, including container management (Docker/Kubernetes), CI/CD pipeline configuration, and infrastructure as code (Terraform/Ansible).

## Installation

To install the library, use the following command:

```bash
pip install devops-automation
```

## Features

- **Container Management**: Simplify the management of Docker and Kubernetes containers.
- **CI/CD Pipelines**: Easily configure and manage CI/CD pipelines.
- **Infrastructure as Code**: Manage infrastructure using Terraform and Ansible.

## Usage

### Container Management

```python
from devops_automation import container_manager

# Example usage
container_manager.deploy_container('docker', 'my-container')
```

### CI/CD Pipeline Configuration

```python
from devops_automation import ci_cd_manager

# Example usage
ci_cd_manager.setup_pipeline('my-pipeline')
```

### Infrastructure as Code

```python
from devops_automation import infrastructure_manager

# Example usage
infrastructure_manager.deploy_infrastructure('terraform', 'my-infrastructure')
```

## Contributing

We welcome contributions! Please read our [contributing guidelines](CONTRIBUTING.md) for more details.

## License

This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.

## Contact

For any inquiries or issues, please contact us at [support@devops-automation.com](mailto:support@devops-automation.com).

