mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-19 06:35:10 +00:00
6 lines
144 B
Python
6 lines
144 B
Python
import pkg_resources
|
|
|
|
try:
|
|
__version__ = pkg_resources.get_distribution('setuptools').version
|
|
except Exception:
|
|
__version__ = 'unknown'
|