forked from jan/mem_edit
move version info into VERSION.py
This avoid needing custom spec files for pyinstaller, which doesn't handle package_data by default
This commit is contained in:
parent
0632b205ab
commit
9759645f92
4 changed files with 9 additions and 8 deletions
|
|
@ -1 +0,0 @@
|
|||
0.4
|
||||
4
mem_edit/VERSION.py
Normal file
4
mem_edit/VERSION.py
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
""" VERSION defintion. THIS FILE IS MANUALLY PARSED BY setup.py and REQUIRES A SPECIFIC FORMAT """
|
||||
__version__ = '''
|
||||
0.4
|
||||
'''
|
||||
|
|
@ -12,16 +12,14 @@ To get started, try:
|
|||
|
||||
"""
|
||||
import platform
|
||||
import pathlib
|
||||
|
||||
from .utils import MemEditError
|
||||
|
||||
|
||||
__author__ = 'Jan Petykiewicz'
|
||||
|
||||
with open(pathlib.Path(__file__).parent / 'VERSION', 'r') as f:
|
||||
__version__ = f.read().strip()
|
||||
version = __version__
|
||||
from .VERSION import __version__
|
||||
version = __version__ # legacy compatibility
|
||||
|
||||
|
||||
system = platform.system()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue