1# coding=utf-8
2"""
3This describes the core API for the inkex core modules.
4
5This provides the basis from which you can develop your inkscape extension.
6"""
7
8# pylint: disable=wildcard-import
9
10import sys
11MIN_VERSION = (3, 6)
12if sys.version_info < MIN_VERSION:
13    sys.exit("Inkscape extensions require Python 3.6 or greater.")
14
15from .extensions import *
16from .utils import *
17from .styles import *
18from .paths import Path, CubicSuperPath  # Path commands are not exported
19from .colors import *
20from .transforms import *
21from .elements import *
22
23# legacy proxies
24from .deprecated import Effect
25from .deprecated import optparse
26from .deprecated import InkOption
27from .deprecated import etree
28from .deprecated import localize
29from .deprecated import debug
30
31# legacy functions
32from .deprecated import are_near_relative
33from .deprecated import unittouu
34