Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
New upstream version 2.1.4+ds
· 44fddaeb
Bas Couwenberg
authored
Nov 20, 2018
44fddaeb
New upstream version 2.1.5+ds
· 0a6e4439
Bas Couwenberg
authored
Nov 20, 2018
0a6e4439
New upstream version 2.1.6+ds
· 7e16fe79
Bas Couwenberg
authored
Nov 21, 2018
7e16fe79
Show whitespace changes
Inline
Side-by-side
PKG-INFO
View file @
7e16fe79
Metadata-Version: 1.2
Name: PDAL
Version: 2.1.
3
Version: 2.1.
6
Summary: Point cloud data processing
Home-page: http://pdal.io
Author: Howard Butler
...
...
VERSION.txt
View file @
7e16fe79
2.1.3
\ No newline at end of file
2.1.6
\ No newline at end of file
pdal/__init__.py
View file @
7e16fe79
__version__
=
'
2.1.
3
'
__version__
=
'
2.1.
6
'
from
.pipeline
import
Pipeline
from
.array
import
Array
...
...
setup.py
View file @
7e16fe79
...
...
@@ -156,12 +156,21 @@ if DEBUG:
if
os
.
name
!=
'
nt
'
:
extra_compile_args
+=
[
'
-g
'
,
'
-O0
'
]
# readers.numpy doesn't exist until PDAL 1.8
if
PDALVERSION
>=
Version
(
'
1.8
'
):
libraries
.
append
(
'
pdal_plugin_reader_numpy
'
)
if
os
.
name
in
[
'
nt
'
]:
if
os
.
environ
[
'
OSGEO4W_ROOT
'
]:
library_dirs
=
[
'
c:/OSGeo4W64/lib
'
]
if
os
.
environ
.
get
(
'
OSGEO4W_ROOT
'
):
library_dirs
=
[
'
c:/%s/lib
'
%
os
.
environ
.
get
(
'
OSGEO4W_ROOT
'
)]
if
os
.
environ
.
get
(
'
CONDA_PREFIX
'
):
prefix
=
os
.
path
.
expandvars
(
'
%CONDA_PREFIX%
'
)
library_dirs
=
[
'
%s\Library\lib
'
%
prefix
]
libraries
=
[
'
pdalcpp
'
,
'
pdal_util
'
,
'
ws2_32
'
]
if
PDALVERSION
>=
Version
(
'
1.8
'
):
libraries
.
append
(
'
pdal_plugin_reader_numpy
'
)
libraries
.
append
(
'
libpdal_plugin_reader_numpy
'
)
extra_compile_args
=
[
'
/DNOMINMAX
'
,]
if
'
linux
'
in
sys
.
platform
or
'
linux2
'
in
sys
.
platform
:
...
...
@@ -169,10 +178,10 @@ if 'linux' in sys.platform or 'linux2' in sys.platform:
# try to ensure the ABI for Conda GCC 4.8
if
'
4.8
'
in
sys
.
version
:
extra_compile_args
+=
[
'
-D_GLIBCXX_USE_CXX11_ABI=0
'
]
elif
'
darwin
'
in
sys
.
platform
:
extra_compile_args
+=
[
'
-std=c++11
'
,
'
-Wno-unknown-pragmas
'
]
# readers.numpy doesn't exist until PDAL 1.8
if
PDALVERSION
>=
Version
(
'
1.8
'
):
libraries
.
append
(
'
pdal_plugin_reader_numpy
'
)
sources
=
[
'
pdal/libpdalpython
'
+
ext
,
"
pdal/PyPipeline.cpp
"
]
extensions
=
[
DistutilsExtension
(
"
*
"
,
...
...