- Created .gitignore to exclude build artifacts, Python bytecode, and environment files. - Added README.md with project description, features, use cases, and examples. - Implemented Environment class for managing environment variables with mode support. - Defined casting functions for various data types. - Established setup.py for package distribution.
23 lines
192 B
Plaintext
23 lines
192 B
Plaintext
# Build artifacts
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
|
|
# Python bytecode
|
|
__pycache__/
|
|
*.py[cod]
|
|
|
|
# Virtual environments
|
|
venv/
|
|
.env/
|
|
|
|
# System files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# VS Code
|
|
.vscode/
|
|
|
|
.env*
|
|
test.py
|