Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions Lib/fontMath/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,15 @@
brilliant glyph math in RoboFab.
"""

try:
from ._version import __version__
except ImportError:
try:
from setuptools_scm import get_version
__version__ = get_version()
except ImportError:
__version__ = 'unknown'

from fontMath.mathGlyph import MathGlyph
from fontMath.mathInfo import MathInfo
from fontMath.mathKerning import MathKerning


version = __version__ = "0.7.1.dev0"