Metadata-Version: 2.4
Name: txy
Version: 0.1.7
Summary: Python Virtual Environment Manager.
Home-page: https://github.com/Clivern/Txy/
Author: Clivern
Author-email: hello@clivern.com
License: MIT
Project-URL: Documentation, https://github.com/Clivern/Txy/
Project-URL: Source, https://github.com/Clivern/Txy/
Project-URL: Changelog, https://github.com/Clivern/Txy/blob/main/CHANGELOG.rst
Project-URL: Tracker, https://github.com/Clivern/Txy/issues
Project-URL: Download, https://pypi.org/project/Txy/#files
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/x-rst; charset=UTF-8
License-File: LICENSE.txt
Requires-Dist: click<=8.3.0
Requires-Dist: rich<=14.1.0
Requires-Dist: importlib-metadata<=8.7.0; python_version < "3.8"
Dynamic: license-file

.. image:: https://img.shields.io/pypi/v/txy.svg
    :alt: PyPI-Server
    :target: https://pypi.org/project/txy/
.. image:: https://github.com/clivern/txy/actions/workflows/ci.yml/badge.svg
    :alt: Build Status
    :target: https://github.com/clivern/txy/actions/workflows/ci.yml

|

====
Txy
====

To use txy, follow the following steps:

1. Install txy python command line tool.

.. code-block::

    $ pip install txy


2. Create a virtual environment project01

.. code-block::

    $ txy create project01


3. Get virtual environment project01 info

.. code-block::

    $ txy info project01


4. Get list of virtual environments

.. code-block::

    $ txy list


5. Remove virtual environment project01

.. code-block::

    $ txy remove project01


6. Load current project environment

.. code-block::

    $ source $(txy current)
