# Ignore these files and directories
.env        # Environment variables for virtualenv
coverage/   # Coverage results after running tests with coverage tools
.dist-info/  # Wheel metadata (use poetry build to handle this)
*.egg-info/  # Egg info directory (automatically created by pip)
auracast.egg-info/
.vscode/    # IDE configuration (edit in VS Code)

# Ignore these file types and extensions
*.pyc     # Compiled Python files (.pyc, .pyo are automatically ignored by git)
*.class   # Java class files
*.exe     # Executable files

# Ignore virtual environment data
venv/
env/

# Ignore any IDE configurations or project-specific metadata
.vscode/**
.pycharm/**
*.iml
.project
.settings

# Ignore test results and logs (adjust to your specific testing framework)
/testresults/**
/logs/**

# Ignore any system files created by operating systems, text editors or other applications
.DS_Store
.AppData/
.LFS*

# Ignore any hidden files used by tools like poetry for virtual environment creation
__pycache__/

# Exclude .env file from all platforms
*/.env