Use separate VERSION file

This commit is contained in:
Jan Petykiewicz 2019-09-27 21:03:52 -07:00
commit f471374b68
4 changed files with 14 additions and 3 deletions

1
masque/VERSION Normal file
View file

@ -0,0 +1 @@
0.5

View file

@ -23,6 +23,8 @@
- svgwrite [masque.file.svg]
"""
import pathlib
from .error import PatternError
from .shapes import Shape
from .label import Label
@ -33,4 +35,6 @@ from .pattern import Pattern
__author__ = 'Jan Petykiewicz'
version = '0.5'
with open(pathlib.Path(__file__).parent / 'VERSION', 'r') as f:
__version__ = f.read().strip()
version = __version__