mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-15 21:25:44 +08:00
084c5c5995
* ENH: Use versioneer for version information. * FIX: rc.py is a build artifact and should not be version controlled. * FIX: Move processResourceFile to its own command.
9 lines
273 B
Python
9 lines
273 B
Python
from .rc import *
|
|
from ._version import get_versions
|
|
__version__ = get_versions()['version']
|
|
short_version = __version__
|
|
version = __version__
|
|
full_version = __version__
|
|
git_revision = get_versions()['full-revisionid']
|
|
release = not get_versions()['dirty']
|
|
del get_versions |