10 lines
161 B
Python
10 lines
161 B
Python
# © 2017 James R. Barlow: github.com/jbarlow83
|
|
|
|
import pkg_resources
|
|
|
|
PROGRAM_NAME = 'ocrmypdf'
|
|
|
|
VERSION = pkg_resources.get_distribution('ocrmypdf').version
|
|
|
|
|