mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-11 17:18:30 +02:00
9 lines
167 B
Python
9 lines
167 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
import pkg_resources
|
|
|
|
dist = pkg_resources.get_distribution('jrnl')
|
|
__title__ = dist.project_name
|
|
__version__ = dist.version
|
|
|