File: __init__.py

package info (click to toggle)
python-pdal 2.1.8%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 568 kB
  • sloc: python: 358; cpp: 349; makefile: 9
file content (18 lines) | stat: -rw-r--r-- 513 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
__version__='2.1.8'

from .pipeline import Pipeline
from .array import Array
from .dimension import dimensions

from pdal.libpdalpython import getVersionString, getVersionMajor, getVersionMinor, getVersionPatch, getSha1, getDebugInformation, getPluginInstallPath

class Info(object):
    version = getVersionString()
    major = getVersionMajor()
    minor = getVersionMinor()
    patch = getVersionPatch()
    debug = getDebugInformation()
    sha1 = getSha1()
    plugin = getPluginInstallPath()

info = Info()