From 3f334c8d8b5dc8f45ae1162b13dd0c5715a4504d Mon Sep 17 00:00:00 2001 From: lasseedfast Date: Thu, 10 Oct 2024 11:27:59 +0200 Subject: [PATCH] Refactor code to add .gitignore file and include necessary files for repository --- .gitignore | 2 ++ __init__.py => env_manager/__init__.py | 0 env_manager.py => env_manager/env_manager.py | 0 3 files changed, 2 insertions(+) rename __init__.py => env_manager/__init__.py (100%) rename env_manager.py => env_manager/env_manager.py (100%) diff --git a/.gitignore b/.gitignore index 6e46a3e..f1d17df 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,5 @@ !setup.py !.gitignore !__init__.py +!/env_manager/* +!/env_manager \ No newline at end of file diff --git a/__init__.py b/env_manager/__init__.py similarity index 100% rename from __init__.py rename to env_manager/__init__.py diff --git a/env_manager.py b/env_manager/env_manager.py similarity index 100% rename from env_manager.py rename to env_manager/env_manager.py