Passed
Push — master ( 07db9e...a24c88 )
by Oleg
01:22
created

geovectorslib   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 8
dl 0
loc 12
rs 10
c 0
b 0
f 0
wmc 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