Metadata-Version: 2.1
Name: lying
Version: 0.0.1a1
Summary: run a fake terminal
Home-page: https://github.com/axju/lying
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: pyfiglet

===========================
lying - run a fake terminal
===========================
I need this for a other project. So it is still in develop.


Install
-------
::

  pip install lying


Development
-----------
Some information for crazy developers. 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 twine tox flake8 pylint pylama
  pip install -e .

Run some test::

  tox

Create package::

  python setup.py sdist bdist_wheel

Upload package::

  twine upload dist/*


