%bcond_without tests # Sphinx-generated HTML documentation is not suitable for packaging; see # https://bugzilla.redhat.com/show_bug.cgi?id=2006555 for discussion. # # We can generate PDF documentation as a substitute. %bcond_without doc_pdf %global pypi_name sklearn-genetic %global _description %{expand: sklearn-genetic is a genetic feature selection module for scikit-learn. Genetic algorithms mimic the process of natural selection to search for optimal values of a function.} Name: python-%{pypi_name} Version: 0.5.1 Release: 1%{?dist} Summary: A genetic feature selection module for scikit-learn License: LGPLv3 URL: https://github.com/manuel-calzolari/%{pypi_name} Source0: %{url}/archive/%{version}/%{pypi_name}-%{version}.tar.gz BuildArch: noarch %description %_description %package -n python3-%{pypi_name} Summary: %{summary} BuildRequires: make BuildRequires: python3-devel %if %{with tests} BuildRequires: python3dist(pytest) %endif %description -n python3-%{pypi_name} %_description %package doc Summary: %{summary} %if %{with doc_pdf} BuildRequires: make BuildRequires: python3-sphinx-latex BuildRequires: latexmk BuildRequires: %{py3_dist sphinx} BuildRequires: %{py3_dist sphinx-rtd-theme} BuildRequires: %{py3_dist sphinxcontrib-bibtex} %endif %description doc Documentation for %{name}. %prep %autosetup -n %{pypi_name}-%{version} %generate_buildrequires %pyproject_buildrequires %build %pyproject_wheel %if %{with doc_pdf} %make_build -C docs latex SPHINXOPTS='%{?_smp_mflags}' %make_build -C docs/build/latex LATEXMKOPTS='-quiet' %endif %install %pyproject_install %pyproject_save_files genetic_selection %check %if %{with tests} %pytest %endif %files -n python3-sklearn-genetic -f %{pyproject_files} %license LICENSE.txt %doc README.rst %files doc %license LICENSE.txt %if %{with doc_pdf} %doc docs/build/latex/%{pypi_name}.pdf %endif %changelog * Sun Apr 10 2022 Iztok Fister Jr. - 0.5.1-1 - Initial package