| Total Complexity | 0 | 
| Total Lines | 12 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | from pkg_resources import DistributionNotFound, get_distribution | ||
| 2 | |||
| 3 | from .geod import direct, inverse | ||
| 4 | |||
| 5 | |||
| 6 | try: | ||
| 7 |     __version__ = get_distribution('GeoVectors').version | ||
| 8 | except DistributionNotFound: | ||
| 9 | __version__ = '(local)' | ||
| 10 | |||
| 11 | __all__ = ['direct', 'inverse'] | ||
| 12 |