forked from pool/python-Pweave
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Pweave?expand=0&rev=1
This commit is contained in:
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
||||
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.osc
|
||||
3
Pweave-0.30.2.tar.gz
Normal file
3
Pweave-0.30.2.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:df4b77539c08723131fc77132cb42995d642ed7343248814b9dc9ae706ba6f08
|
||||
size 1497246
|
||||
4
python-Pweave.changes
Normal file
4
python-Pweave.changes
Normal file
@@ -0,0 +1,4 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 12 20:58:25 UTC 2017 - toddrme2178@gmail.com
|
||||
|
||||
- Initial version
|
||||
92
python-Pweave.spec
Normal file
92
python-Pweave.spec
Normal file
@@ -0,0 +1,92 @@
|
||||
#
|
||||
# spec file for package python-Pweave
|
||||
#
|
||||
# Copyright (c) 2018 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-Pweave
|
||||
Version: 0.30.2
|
||||
Release: 0
|
||||
Summary: Scientific reports with embedded python computations
|
||||
License: BSD-3-Clause
|
||||
Group: Development/Languages/Python
|
||||
Url: https://github.com/mpastell/Pweave
|
||||
Source: https://files.pythonhosted.org/packages/source/P/Pweave/Pweave-%{version}.tar.gz
|
||||
BuildRequires: %{python_module devel}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
# SECTION test requirements
|
||||
BuildRequires: %{python_module Markdown}
|
||||
BuildRequires: %{python_module Pygments}
|
||||
BuildRequires: %{python_module certifi}
|
||||
BuildRequires: %{python_module jupyter_client}
|
||||
BuildRequires: %{python_module jupyter_ipykernel}
|
||||
BuildRequires: %{python_module jupyter_ipython}
|
||||
BuildRequires: %{python_module jupyter_nbconvert}
|
||||
BuildRequires: %{python_module jupyter_nbformat}
|
||||
BuildRequires: %{python_module matplotlib}
|
||||
BuildRequires: %{python_module nose}
|
||||
BuildRequires: %{python_module scipy}
|
||||
# /SECTION
|
||||
Requires: python-Markdown
|
||||
Requires: python-Pygments
|
||||
Requires: python-certifi
|
||||
Requires: python-jupyter_client
|
||||
Requires: python-jupyter_ipykernel
|
||||
Requires: python-jupyter_ipython
|
||||
Requires: python-jupyter_nbconvert
|
||||
Requires: python-jupyter_nbformat
|
||||
Recommends: python-Sphinx
|
||||
Recommends: python-matplotlib
|
||||
Recommends: python-scipy
|
||||
Recommends: python-sphinx_rtd_theme
|
||||
BuildArch: noarch
|
||||
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
Pweave is a scientific report generator and a literate programming
|
||||
tool for Python. Pweave can capture the results and plots from data
|
||||
analysis and works well with NumPy, SciPy and matplotlib. It is able
|
||||
to run python code from source document and include the results and
|
||||
capture matplotlib plots in the output.
|
||||
|
||||
Pweave is good for creating reports, tutorials, presentations etc.
|
||||
with embedded python code It can also be used to make websites together
|
||||
with e.g. Sphinx or rest2web.
|
||||
|
||||
%prep
|
||||
%setup -q -n Pweave-%{version}
|
||||
|
||||
%build
|
||||
%python_build
|
||||
|
||||
%install
|
||||
%python_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%files %{python_files}
|
||||
%doc CHANGELOG.txt README.rst
|
||||
%license LICENSE.txt
|
||||
%{_bindir}/pweave
|
||||
%{_bindir}/ptangle
|
||||
%{_bindir}/pypublish
|
||||
%{_bindir}/pweave-convert
|
||||
%{python_sitelib}/*
|
||||
|
||||
%changelog
|
||||
Reference in New Issue
Block a user