├── .gitignore ├── LICENSE ├── README.md ├── auto_venv.py ├── docs └── images │ └── favicon.png └── example.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amal-khailtash/auto_venv/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amal-khailtash/auto_venv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amal-khailtash/auto_venv/HEAD/README.md -------------------------------------------------------------------------------- /auto_venv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amal-khailtash/auto_venv/HEAD/auto_venv.py -------------------------------------------------------------------------------- /docs/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amal-khailtash/auto_venv/HEAD/docs/images/favicon.png -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amal-khailtash/auto_venv/HEAD/example.py --------------------------------------------------------------------------------