Metadata-Version: 2.1
Name: tpqtlib
Version: 0.0.3
Summary: Collection of Python utilities modules to work with PySide/PyQt and DCCs
Home-page: https://github.com/tpoveda/tpQtLib
Author: Tomas Poveda
Author-email: tpovedatd@gmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/x-rst
Requires-Dist: Qt.py
Requires-Dist: tpPyUtils
Requires-Dist: tpDccLib
Provides-Extra: dev
Requires-Dist: wheel ; extra == 'dev'
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'

tpQtLib
============================================================

.. image:: https://img.shields.io/github/license/tpoveda/tpQtLib.svg
    :target: https://github.com/tpoveda/tpPyUtils/blob/master/LICENSE

Collection of Python modules to make your life easier when working with PySide/PyQt.

Also, when working with specific DCCs, tpQtLib will auto import proper modules and will use
DCC specific implementations for PySide/PyQt widgets.

Installation
-------------------
Manual
~~~~~~~~~~~~~~~~~~~~~~
1. Clone/Download tpQtLib anywhere in your PC (If you download the repo, you will need to extract
the contents of the .zip file).
2. Copy **tpQtLib** folder located inside **source** folder in a path added to **sys.path**

Automatic
~~~~~~~~~~~~~~~~~~~~~~
Automatic installation for tpQtLib is not finished yet.

DCC Implementations
-------------------
At this moment following DCCs are supported:

* **3ds Max**: https://github.com/tpoveda/tpMaxLib
* **Maya**: https://github.com/tpoveda/tpMayaLib
* **Houdini**: https://github.com/tpoveda/tpHoudiniLib
* **Nuke**: https://github.com/tpoveda/tpNukeLib
* **Blender**: *Work in Progress*

During tpQtLib initialization, if DCC specific implementation package is found in sys.path, tpQtLib
will automatically detect it and will import it.

Usage
-------------------
Initialization Code
~~~~~~~~~~~~~~~~~~~~~~
tpQtLib must be initialized before being used.

.. code-block:: python

    import tpQtLib
    tpQtLib.init()


Reloading
~~~~~~~~~~~~~~~~~~~~~~
For development purposes, you can enable reloading system, so 
you can reload tpQtLib sources without the necessity of restarting
your Python session. Useful when working with DCCs.

.. code-block:: python

    import tpQtLib
    reload(tpQtLib)
    tpQtLib.init(True)

Enabling debug log
~~~~~~~~~~~~~~~~~~~~~~
By default, tpQtLib logger only logs warning messages. To enable all log messages
you can set TPQTLIB_DEV environment variables to 'True'

.. code-block:: python

    import os

    os.environ['TPQTLIB_DEV'] = 'True'
    import tpQtLib
    tpQtLib.init()


Deploying new version (only for devs)
-----------------------------------------

Update version
~~~~~~~~~~~~~~~~~~~~~~

Make sure **setup.cfg** file version field is updated

Installing libraries
~~~~~~~~~~~~~~~~~~~~~~
Make sure that you have installed the following packages:

* **wheel**

.. code-block:: console

    pip install wheel

* **twine**

.. code-block:: console

    pip install twine

* **setuptools**

.. code-block:: console

    pip install setuptools

Make sure to update setuptools to latest available version:

.. code-block:: console

    pip install setuptools --upgrade


Generate wheel
~~~~~~~~~~~~~~~~~~~~~~

.. code-block:: console

    python setup.py sdist bdist_wheel

Validate wheel package generation
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. code-block:: console

    twine check dist/*

Upload package to PyPi
~~~~~~~~~~~~~~~~~~~~~~~~

.. code-block:: console

    twine upload dist/*


