summaryrefslogtreecommitdiff
path: root/python-scrapbook.spec
diff options
context:
space:
mode:
Diffstat (limited to 'python-scrapbook.spec')
-rw-r--r--python-scrapbook.spec153
1 files changed, 153 insertions, 0 deletions
diff --git a/python-scrapbook.spec b/python-scrapbook.spec
new file mode 100644
index 0000000..90f2f77
--- /dev/null
+++ b/python-scrapbook.spec
@@ -0,0 +1,153 @@
+%global _empty_manifest_terminate_build 0
+Name: python-scrapbook
+Version: 0.5.0
+Release: 1
+Summary: A library for recording and reading data in Jupyter and nteract Notebooks
+License: BSD
+URL: https://github.com/nteract/scrapbook
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/44/5f/cb73e0d1c92d73d992c6e77e050f7288e5a1503644822c2792a0e4bad996/scrapbook-0.5.0.tar.gz
+BuildArch: noarch
+
+Requires: python3-pandas
+Requires: python3-papermill
+Requires: python3-jsonschema
+Requires: python3-ipython
+Requires: python3-pyarrow
+Requires: python3-papermill[all]
+Requires: python3-papermill[azure]
+Requires: python3-bumpversion
+Requires: python3-wheel
+Requires: python3-setuptools
+Requires: python3-twine
+Requires: python3-flake8
+Requires: python3-tox
+Requires: python3-mock
+Requires: python3-ipython
+Requires: python3-papermill[dev]
+Requires: python3-pytest
+Requires: python3-pytest-cov
+Requires: python3-pytest-mock
+Requires: python3-pytest-env
+Requires: python3-codecov
+Requires: python3-coverage
+Requires: python3-papermill[gcs]
+Requires: python3-papermill[s3]
+Requires: python3-bumpversion
+Requires: python3-wheel
+Requires: python3-setuptools
+Requires: python3-twine
+Requires: python3-flake8
+Requires: python3-tox
+Requires: python3-mock
+Requires: python3-ipython
+Requires: python3-papermill[dev]
+Requires: python3-pytest
+Requires: python3-pytest-cov
+Requires: python3-pytest-mock
+Requires: python3-pytest-env
+Requires: python3-codecov
+Requires: python3-coverage
+
+%description
+## Models and Terminology
+Scrapbook defines the following items:
+- **scraps**: serializable data values and visualizations such as strings, lists of
+ objects, pandas dataframes, charts, images, or data references.
+- **notebook**: a wrapped nbformat notebook object with extra methods for interacting
+ with scraps.
+- **scrapbook**: a collection of notebooks with an interface for asking questions of
+ the collection.
+- **encoders**: a registered translator of data to/from notebook
+ storage formats.
+### `scrap` model
+The `scrap` model houses a few key attributes in a tuple, including:
+- **name**: The name of the scrap
+- **data**: Any data captured by the scrapbook api call
+- **encoder**: The name of the encoder used to encode/decode data to/from the notebook
+
+%package -n python3-scrapbook
+Summary: A library for recording and reading data in Jupyter and nteract Notebooks
+Provides: python-scrapbook
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-scrapbook
+## Models and Terminology
+Scrapbook defines the following items:
+- **scraps**: serializable data values and visualizations such as strings, lists of
+ objects, pandas dataframes, charts, images, or data references.
+- **notebook**: a wrapped nbformat notebook object with extra methods for interacting
+ with scraps.
+- **scrapbook**: a collection of notebooks with an interface for asking questions of
+ the collection.
+- **encoders**: a registered translator of data to/from notebook
+ storage formats.
+### `scrap` model
+The `scrap` model houses a few key attributes in a tuple, including:
+- **name**: The name of the scrap
+- **data**: Any data captured by the scrapbook api call
+- **encoder**: The name of the encoder used to encode/decode data to/from the notebook
+
+%package help
+Summary: Development documents and examples for scrapbook
+Provides: python3-scrapbook-doc
+%description help
+## Models and Terminology
+Scrapbook defines the following items:
+- **scraps**: serializable data values and visualizations such as strings, lists of
+ objects, pandas dataframes, charts, images, or data references.
+- **notebook**: a wrapped nbformat notebook object with extra methods for interacting
+ with scraps.
+- **scrapbook**: a collection of notebooks with an interface for asking questions of
+ the collection.
+- **encoders**: a registered translator of data to/from notebook
+ storage formats.
+### `scrap` model
+The `scrap` model houses a few key attributes in a tuple, including:
+- **name**: The name of the scrap
+- **data**: Any data captured by the scrapbook api call
+- **encoder**: The name of the encoder used to encode/decode data to/from the notebook
+
+%prep
+%autosetup -n scrapbook-0.5.0
+
+%build
+%py3_build
+
+%install
+%py3_install
+install -d -m755 %{buildroot}/%{_pkgdocdir}
+if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
+if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
+if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
+if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
+pushd %{buildroot}
+if [ -d usr/lib ]; then
+ find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/lib64 ]; then
+ find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/bin ]; then
+ find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/sbin ]; then
+ find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+touch doclist.lst
+if [ -d usr/share/man ]; then
+ find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
+fi
+popd
+mv %{buildroot}/filelist.lst .
+mv %{buildroot}/doclist.lst .
+
+%files -n python3-scrapbook -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 0.5.0-1
+- Package Spec generated