File python-trimesh.spec of Package python-trimesh
#
# spec file for package python-phue
#
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-trimesh
Version: 3.5.15
Release: 0
Summary: Library for loading and using triangular meshes
License: MIT
Group: Development/Languages/Python
URL: https://trimsh.org
Source: trimesh-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module numpy}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module pytest-xdist}
BuildRequires: %{python_module scipy}
%if 0
# Some more dependencies for tests, add when
# python-rtree becomes available
BuildRequires: %{python_module lxml}
BuildRequires: %{python_module networkx}
BuildRequires: %{python_module requests}
BuildRequires: %{python_module rtree}
BuildRequires: %{python_module shapely}
%endif
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-lxml
Requires: python-numpy
Requires: python-scipy
Requires: python-shapely
Requires: python-networkx
#Requires: python-rtree
Recommends: python-pyembree
%python_subpackages
%description
Trimesh is a pure Python library for loading and using triangular
meshes with an emphasis on watertight surfaces.
%prep
%setup -q -n trimesh-%version
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
export LANG=en_US.UTF-8
# run a subset of tests for now, many require the optional python-rtree module
cat tests/basic.list
%pytest -n auto tests/test_inertia.py tests/test_cache.py tests/test_triangles.py
%files %{python_files}
%license LICENSE.md
%doc README.md
%{python_sitelib}/*