Maniverse 0.2.2__tar.gz → 0.2.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of Maniverse might be problematic. Click here for more details.
- {Maniverse-0.2.2 → Maniverse-0.2.3/Maniverse.egg-info}/PKG-INFO +1 -1
- {Maniverse-0.2.2/Maniverse.egg-info → Maniverse-0.2.3}/PKG-INFO +1 -1
- {Maniverse-0.2.2 → Maniverse-0.2.3}/setup.py +4 -2
- {Maniverse-0.2.2 → Maniverse-0.2.3}/LICENSE +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/Maniverse.egg-info/SOURCES.txt +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/Maniverse.egg-info/dependency_links.txt +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/Maniverse.egg-info/top_level.txt +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/README.md +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/pyproject.toml +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/setup.cfg +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Macro.h +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Manifold/Grassmann.cpp +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Manifold/Grassmann.h +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Manifold/Manifold.cpp +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Manifold/Manifold.h +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Manifold/Orthogonal.cpp +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Manifold/Orthogonal.h +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Manifold/PyManifoldIn.h +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Manifold/PyManifoldOut.h +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Manifold/Simplex.cpp +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Manifold/Simplex.h +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Manifold/TransRotInvPointCloud.cpp +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Manifold/TransRotInvPointCloud.h +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Manifold/makefile +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Maniverse.egg-info/PKG-INFO +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Maniverse.egg-info/SOURCES.txt +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Maniverse.egg-info/dependency_links.txt +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Maniverse.egg-info/top_level.txt +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Optimizer/HessUpdate.cpp +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Optimizer/HessUpdate.h +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Optimizer/PyOptimizerIn.h +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Optimizer/PyOptimizerOut.h +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Optimizer/SubSolver.cpp +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Optimizer/SubSolver.h +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Optimizer/TrustRegion.cpp +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Optimizer/TrustRegion.h +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/Optimizer/makefile +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/PyManiverse.cpp +0 -0
- {Maniverse-0.2.2 → Maniverse-0.2.3}/src/makefile +0 -0
|
@@ -5,9 +5,10 @@ import subprocess
|
|
|
5
5
|
from glob import glob
|
|
6
6
|
from setuptools import setup, find_packages
|
|
7
7
|
from setuptools.command.build import build
|
|
8
|
+
import pybind11
|
|
8
9
|
from pybind11.setup_helpers import Pybind11Extension, ParallelCompile, naive_recompile
|
|
9
10
|
|
|
10
|
-
__version__ = "0.2.
|
|
11
|
+
__version__ = "0.2.3"
|
|
11
12
|
pwd = os.path.dirname(__file__)
|
|
12
13
|
|
|
13
14
|
# Checking dependencies
|
|
@@ -31,7 +32,7 @@ else:
|
|
|
31
32
|
tar.extractall(path = pwd) # Directory: eigen-3.4-rc1
|
|
32
33
|
EIGEN3 = pwd + "/eigen-3.4-rc1/"
|
|
33
34
|
print("EIGEN3 is %s." % EIGEN3)
|
|
34
|
-
PYBIND11 =
|
|
35
|
+
PYBIND11 = pybind11.get_include()
|
|
35
36
|
print("PYBIND11 is %s." % PYBIND11)
|
|
36
37
|
|
|
37
38
|
BASE_DIR = os.path.dirname(__file__)
|
|
@@ -49,6 +50,7 @@ ext_modules = [ Pybind11Extension(
|
|
|
49
50
|
define_macros = ["__PYTHON__", "EIGEN_INITIALIZE_MATRICES_BY_ZERO"],
|
|
50
51
|
undef_macros = ["DEBUG"],
|
|
51
52
|
include_dirs = [PYTHON3, EIGEN3, PYBIND11],
|
|
53
|
+
extra_compile_args = ["-O3"],
|
|
52
54
|
cxx_std = 17,
|
|
53
55
|
language = "c++"
|
|
54
56
|
)]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|