Metadata-Version: 2.1
Name: wmc
Version: 0.2.0
Summary: Watch me coding, a toolbox
Home-page: https://github.com/axju/wmc
Author: Axel Juraske
Author-email: axel.juraske@short-report.de
License: MIT
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: lying (==0.0.1a1)
Requires-Dist: ffmpeg-python
Requires-Dist: opencv-python
Requires-Dist: numpy
Requires-Dist: Xlib

===============
Watch me coding
===============
.. image:: https://img.shields.io/pypi/v/wmc
   :alt: PyPI
   :target: https://pypi.org/project/wmc/

.. image:: https://img.shields.io/pypi/pyversions/wmc
   :alt: Python Version
   :target: https://pypi.org/project/wmc/

.. image:: https://img.shields.io/pypi/wheel/wmc
   :alt: Wheel
   :target: https://pypi.org/project/wmc/

.. image:: https://img.shields.io/pypi/implementation/wmc
   :alt: Implementation
   :target: https://pypi.org/project/wmc/

.. image:: https://img.shields.io/pypi/dm/wmc
   :alt: Downloads
   :target: https://pypi.org/project/wmc/

.. image:: https://img.shields.io/pypi/l/wmc
   :alt: License
   :target: https://pypi.org/project/wmc/

Install
-------
It is on PyPi::

  pip install wmc

Hot to uses
-----------
Create a new project. This is basically a folder with a settings file::

  wmc setup .
  wmc setup test
  wmc info

You can edit the config file or simple start recording::

  wmc record

Render some fake shell commands to make a nice intro::

  wmc intro

And maybe some tools::

  wmc size
  wmc link


Development
-----------

Virtual environment windows::

  python -m venv venv
  venv\Scripts\activate

Virtual environment linux::

  python3 -m venv venv
  source venv/bin/activate

Setup project::

  python -m pip install --upgrade pip wheel setuptools tox flake8
  python setup.py develop

Run some test::

  tox
  python setup.py test
  python setup.py flake8
  python setup.py isort
  python setup.py check

ToDo
----

1. expand test
2. create intro render
3. catch exception on cli function call


