mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-22 20:33:10 +09:00
10 lines
251 B
Python
10 lines
251 B
Python
"""
|
|
Enough Mach-O to make your head spin.
|
|
|
|
See the relevant header files in /usr/include/mach-o
|
|
|
|
And also Apple's documentation.
|
|
"""
|
|
from __future__ import print_function
|
|
import pkg_resources
|
|
__version__ = pkg_resources.require('macholib')[0].version
|