File: __init__.py

package info (click to toggle)
python-momepy 0.8.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 51,428 kB
  • sloc: python: 11,098; makefile: 35; sh: 11
file content (27 lines) | stat: -rw-r--r-- 764 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import contextlib
from importlib.metadata import PackageNotFoundError, version

from . import datasets  # noqa
from .coins import *
from .dimension import *
from .distribution import *
from .diversity import *
from .elements import *
from .functional._dimension import *
from .functional._distribution import *
from .functional._diversity import *
from .functional._elements import *
from .functional._intensity import *
from .functional._shape import *
from .graph import *
from .intensity import *
from .preprocessing import *
from .shape import *
from .utils import *
from .weights import *

__author__ = "Martin Fleischmann"
__author_email__ = "martin@martinfleischmann.net"

with contextlib.suppress(PackageNotFoundError):
    __version__ = version("momepy")