Esempio n. 1
0
# -*- coding: utf-8 -*-
#
from __future__ import print_function

import pipdated

from .__about__ import (__version__, __author__, __author_email__, __website__)

# pylint: disable=wildcard-import
from .helpers import *

if pipdated.needs_checking(__name__):
    print(pipdated.check(__name__, __version__))
Esempio n. 2
0
# -*- coding: utf-8 -*-
#
'''Script to convert Matplotlib generated figures into TikZ/PGFPlots figures.
'''

from matplotlib2tikz.__about__ import (__author__, __email__, __copyright__,
                                       __credits__, __license__, __version__,
                                       __maintainer__, __status__)

from matplotlib2tikz.save import save

import pipdated
if pipdated.needs_checking('matplotlib2tikz'):
    msg = pipdated.check('matplotlib2tikz', __version__)
    if msg:
        print(msg)
Esempio n. 3
0
# -*- coding: utf-8 -*-
#
from pygmsh.geometry import Geometry
from pygmsh.helper import *

from pygmsh.__about__ import (
    __version__,
    __author__,
    __author_email__,
    __website__,
)

import pipdated
if pipdated.needs_checking('pygmsh'):
    msg = pipdated.check('pygmsh', __version__)
    if msg:
        print(msg)

__all__ = ['geometry', 'helper']
Esempio n. 4
0
# -*- coding: utf-8 -*-
#
'''Script to convert Matplotlib generated figures into TikZ/PGFPlots figures.
'''

from matplotlib2tikz.__about__ import (
        __author__,
        __email__,
        __copyright__,
        __credits__,
        __license__,
        __version__,
        __maintainer__,
        __status__
        )

from matplotlib2tikz.save import get_tikz_code, save

import pipdated
if pipdated.needs_checking(__name__):
    print(pipdated.check(__name__, __version__))