├── .github └── FUNDING.yml ├── .gitignore ├── FUNDING.yml ├── LICENSE ├── README.rst ├── img ├── cover.png ├── cover_slim.png ├── default.png ├── profile.png ├── pylogo.png ├── pypi.png ├── pypower.png ├── python.png ├── screen-1.png ├── screen-2.png └── screen-3.png ├── pyproject.toml ├── requirements.txt ├── setup.cfg ├── setup.py └── venvipy ├── __init__.py ├── creator.py ├── dialogs.py ├── get_data.py ├── manage_pip.py ├── pkg_installer.py ├── pkg_manager.py ├── tables.py ├── venvi.py ├── venvipy_rc.py └── wizard.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/.gitignore -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/README.rst -------------------------------------------------------------------------------- /img/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/img/cover.png -------------------------------------------------------------------------------- /img/cover_slim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/img/cover_slim.png -------------------------------------------------------------------------------- /img/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/img/default.png -------------------------------------------------------------------------------- /img/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/img/profile.png -------------------------------------------------------------------------------- /img/pylogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/img/pylogo.png -------------------------------------------------------------------------------- /img/pypi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/img/pypi.png -------------------------------------------------------------------------------- /img/pypower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/img/pypower.png -------------------------------------------------------------------------------- /img/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/img/python.png -------------------------------------------------------------------------------- /img/screen-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/img/screen-1.png -------------------------------------------------------------------------------- /img/screen-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/img/screen-2.png -------------------------------------------------------------------------------- /img/screen-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/img/screen-3.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/setup.py -------------------------------------------------------------------------------- /venvipy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/venvipy/__init__.py -------------------------------------------------------------------------------- /venvipy/creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/venvipy/creator.py -------------------------------------------------------------------------------- /venvipy/dialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/venvipy/dialogs.py -------------------------------------------------------------------------------- /venvipy/get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/venvipy/get_data.py -------------------------------------------------------------------------------- /venvipy/manage_pip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/venvipy/manage_pip.py -------------------------------------------------------------------------------- /venvipy/pkg_installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/venvipy/pkg_installer.py -------------------------------------------------------------------------------- /venvipy/pkg_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/venvipy/pkg_manager.py -------------------------------------------------------------------------------- /venvipy/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/venvipy/tables.py -------------------------------------------------------------------------------- /venvipy/venvi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/venvipy/venvi.py -------------------------------------------------------------------------------- /venvipy/venvipy_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/venvipy/venvipy_rc.py -------------------------------------------------------------------------------- /venvipy/wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinusphi/venvipy/HEAD/venvipy/wizard.py --------------------------------------------------------------------------------