7 lines
178 B
Python
7 lines
178 B
Python
try:
|
|
import pkg_resources
|
|
except ImportError: # pragma: no cover
|
|
pass
|
|
else:
|
|
if __package__:
|
|
VERSION = pkg_resources.get_distribution("umap-project").version
|