easyrunner-cli 0.0.8.dev115__tar.gz → 0.0.8.dev117__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {easyrunner_cli-0.0.8.dev115 → easyrunner_cli-0.0.8.dev117}/PKG-INFO +1 -1
- easyrunner_cli-0.0.8.dev117/easyrunner/.server-config/infra/authelia/configuration.template.yml +1417 -0
- easyrunner_cli-0.0.8.dev117/easyrunner/.server-config/infra/authelia/configuration.yml +151 -0
- easyrunner_cli-0.0.8.dev117/easyrunner/.server-config/infra/authelia/local-dns-setup.sh +129 -0
- easyrunner_cli-0.0.8.dev117/easyrunner/.server-config/infra/authelia/users_database.yaml +9 -0
- easyrunner_cli-0.0.8.dev117/easyrunner/.server-config/infra/caddy/Caddyfile +15 -0
- easyrunner_cli-0.0.8.dev117/easyrunner/.server-config/infra/caddy/Caddyfile with authcrunch +82 -0
- easyrunner_cli-0.0.8.dev117/easyrunner/.server-config/infra/caddy/Caddyfile with ldap +22 -0
- easyrunner_cli-0.0.8.dev117/easyrunner/.server-config/infra/docker-compose/.env.dev +5 -0
- easyrunner_cli-0.0.8.dev117/easyrunner/.server-config/infra/docker-compose/.env.prod +5 -0
- easyrunner_cli-0.0.8.dev117/easyrunner/.server-config/infra/docker-compose/docker-compose-host.yaml +31 -0
- easyrunner_cli-0.0.8.dev117/easyrunner/.templates/docker-compose/docker-compose-app.yaml +26 -0
- easyrunner_cli-0.0.8.dev117/easyrunner/.templates/docker-compose/docker-compose-helloworld.yaml +27 -0
- easyrunner_cli-0.0.8.dev117/easyrunner/README.md +5 -0
- easyrunner_cli-0.0.8.dev117/easyrunner/__init__.py +14 -0
- easyrunner_cli-0.0.8.dev117/easyrunner/easyrunner_build.py +26 -0
- easyrunner_cli-0.0.8.dev117/easyrunner/poetry.lock +1332 -0
- easyrunner_cli-0.0.8.dev117/easyrunner/pyproject.toml +66 -0
- easyrunner_cli-0.0.8.dev117/easyrunner/pytest.ini +4 -0
- easyrunner_cli-0.0.8.dev117/easyrunner/source/cloud_providers/__init__.py +0 -0
- easyrunner_cli-0.0.8.dev117/easyrunner/tests/__init__.py +2 -0
- easyrunner_cli-0.0.8.dev117/easyrunner/tests/conftest.py +5 -0
- easyrunner_cli-0.0.8.dev117/easyrunner/tests/test_compose_to_quadlet.py +505 -0
- easyrunner_cli-0.0.8.dev117/easyrunner/tests/test_hello_world.py +2 -0
- easyrunner_cli-0.0.8.dev117/easyrunner/tests/test_user_resource.py +240 -0
- {easyrunner_cli-0.0.8.dev115 → easyrunner_cli-0.0.8.dev117}/pyproject.toml +1 -1
- {easyrunner_cli-0.0.8.dev115 → easyrunner_cli-0.0.8.dev117}/README.md +0 -0
- /easyrunner_cli-0.0.8.dev115/easyrunner/cloud_providers/__init__.py → /easyrunner_cli-0.0.8.dev117/easyrunner/.server-config/infra/authelia/notification.txt +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/cloud_providers/cloud_provider_base.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/cloud_providers/cloud_providers.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/cloud_providers/hetzner_provider.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/command_executor.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/command_executor_local.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/__init__.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/base/__init__.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/base/archive_commands.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/base/caddy_api_curl_commands.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/base/caddy_commands.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/base/command_base.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/base/curl_commands.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/base/dir_commands.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/base/docker_compose_commands.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/base/file_commands.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/base/git_commands.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/base/ip_tables_commands.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/base/ip_tables_persistent_commands.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/base/null_command.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/base/os_package_manager_commands.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/base/podman_commands.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/base/ssh_agent_commands.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/base/ssh_keygen_commands.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/base/systemctl_commands.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/base/user_commands.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/base/utility_commands.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/runnable_command_string.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/ubuntu/__init__.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/ubuntu/archive_commands_ubuntu.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/ubuntu/caddy_api_curl_commands_ubuntu.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/ubuntu/caddy_commands_container_ubuntu.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/ubuntu/curl_commands_ubuntu.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/ubuntu/dir_commands_ubuntu.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/ubuntu/docker_compose_commands_ubuntu.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/ubuntu/file_commands_ubuntu.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/ubuntu/git_commands_ubuntu.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/ubuntu/ip_tables_commands_ubuntu.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/ubuntu/ip_tables_persistent_commands_ubuntu.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/ubuntu/os_package_manager_commands_ubuntu.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/ubuntu/podman_commands_ubuntu.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/ubuntu/ssh_agent_commands_ubuntu.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/ubuntu/ssh_keygen_commands_ubuntu.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/ubuntu/systemctl_commands_ubuntu.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/ubuntu/user_commands_ubuntu.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/commands/ubuntu/utility_commands_ubuntu.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/format_utils.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/http_client.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/known_host_ssh_keys.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/cloud_resources/__init__.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/cloud_resources/cloud_firewall_base.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/cloud_resources/cloud_resource_api_base.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/cloud_resources/cloud_resource_pulumi_base.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/cloud_resources/cloud_virtual_machine_base.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/cloud_resources/github/github_api_client.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/cloud_resources/github/github_api_client_dtos.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/cloud_resources/github/github_repo.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/cloud_resources/hetzner/__init__.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/cloud_resources/hetzner/hetzner_firewall.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/cloud_resources/hetzner/hetzner_firewall_rule.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/cloud_resources/hetzner/hetzner_resource_factory.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/cloud_resources/hetzner/hetzner_stack.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/cloud_resources/hetzner/hetzner_virtual_machine.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/os_resources/__init__.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/os_resources/caddy.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/os_resources/directory.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/os_resources/docker_compose.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/os_resources/file.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/os_resources/git_repo.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/os_resources/host_server_ubuntu.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/os_resources/ip_tables.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/os_resources/os_package_manager.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/os_resources/os_resource_base.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/os_resources/podman.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/os_resources/podman_network.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/os_resources/ssh_agent.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/os_resources/systemd_service.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/os_resources/user.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/resource_base.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/resources/web_security_scanner.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/ssh.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/ssh_key.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/store/__init__.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/store/data_models/__init__.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/store/data_models/app.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/store/data_models/database_dto_base.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/store/data_models/server.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/store/db_config.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/store/db_ctx.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/store/easyrunner_store.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/store/json_encoder.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/store/object_id.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/store/uuid7.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/tool_paths.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/types/__init__.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/types/caddy/caddy_config.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/types/caddy/caddy_site.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/types/compose_project/__init__.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/types/compose_project/compose_network.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/types/compose_project/compose_project.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/types/compose_project/compose_service.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/types/compose_project/compose_volume.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/types/cpu_arch_types.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/types/dir_info.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/types/dto_base.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/types/exec_result.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/types/file_info.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/types/json.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/types/jsonobject_to_dataclass.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/types/os_type.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/types/podman_network_driver.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/types/security_scan_result.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/types/ssh_key_type.py +0 -0
- {easyrunner_cli-0.0.8.dev115/easyrunner → easyrunner_cli-0.0.8.dev117/easyrunner/source}/types/vm_config.py +0 -0
- {easyrunner_cli-0.0.8.dev115 → easyrunner_cli-0.0.8.dev117}/source/__init__.py +0 -0
- {easyrunner_cli-0.0.8.dev115 → easyrunner_cli-0.0.8.dev117}/source/app_sub_command.py +0 -0
- {easyrunner_cli-0.0.8.dev115 → easyrunner_cli-0.0.8.dev117}/source/auth/__init__.py +0 -0
- {easyrunner_cli-0.0.8.dev115 → easyrunner_cli-0.0.8.dev117}/source/auth/github_device_flow.py +0 -0
- {easyrunner_cli-0.0.8.dev115 → easyrunner_cli-0.0.8.dev117}/source/auth/github_oauth_config.py +0 -0
- {easyrunner_cli-0.0.8.dev115 → easyrunner_cli-0.0.8.dev117}/source/auth/github_token_manager.py +0 -0
- {easyrunner_cli-0.0.8.dev115 → easyrunner_cli-0.0.8.dev117}/source/auth/hetzner_api_key_manager.py +0 -0
- {easyrunner_cli-0.0.8.dev115 → easyrunner_cli-0.0.8.dev117}/source/infrastructure_deps.py +0 -0
- {easyrunner_cli-0.0.8.dev115 → easyrunner_cli-0.0.8.dev117}/source/license_sub_command.py +0 -0
- {easyrunner_cli-0.0.8.dev115 → easyrunner_cli-0.0.8.dev117}/source/licensing/__init__.py +0 -0
- {easyrunner_cli-0.0.8.dev115 → easyrunner_cli-0.0.8.dev117}/source/licensing/license_manager.py +0 -0
- {easyrunner_cli-0.0.8.dev115 → easyrunner_cli-0.0.8.dev117}/source/link_sub_command.py +0 -0
- {easyrunner_cli-0.0.8.dev115 → easyrunner_cli-0.0.8.dev117}/source/main.py +0 -0
- {easyrunner_cli-0.0.8.dev115 → easyrunner_cli-0.0.8.dev117}/source/servers_sub_command.py +0 -0
- {easyrunner_cli-0.0.8.dev115 → easyrunner_cli-0.0.8.dev117}/source/ssh_config.py +0 -0