__init__.py 418 B

12345678910111213
  1. """
  2. Pysketcher is a simple tool which allows you to create
  3. sketches of, e.g., mechanical systems in Python.
  4. """
  5. from __future__ import unicode_literals
  6. from __future__ import print_function
  7. from __future__ import division
  8. from __future__ import absolute_import
  9. from builtins import *
  10. __version__ = '0.2'
  11. __author__ = 'Hans Petter Langtangen <hpl@simula.no>, Gilbert Brault <gbrault@seadev.org>'
  12. from .shapes import *