summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-29 13:26:56 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-29 13:26:56 +0000
commit80b1b5a2f17515169bf94f02075c2df5c85eee4e (patch)
treedee0e437ebaa0fbb6682d7fe206df84c656142dd
parentb1d285ebbdca7820443eb6631f9c16d0674a0c98 (diff)
automatic import of python-table-nan-val
-rw-r--r--.gitignore1
-rw-r--r--python-table-nan-val.spec180
-rw-r--r--sources1
3 files changed, 182 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..dd50ab5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/table_nan_val-1.0.0.tar.gz
diff --git a/python-table-nan-val.spec b/python-table-nan-val.spec
new file mode 100644
index 0000000..16426ff
--- /dev/null
+++ b/python-table-nan-val.spec
@@ -0,0 +1,180 @@
+%global _empty_manifest_terminate_build 0
+Name: python-table-nan-val
+Version: 1.0.0
+Release: 1
+Summary: find missing value for DataFrame
+License: MIT License
+URL: https://github.com/bdfd/6.1-PyPI_Table_Nan_Val
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/83/d2/c7254515465339c00999c7b414af2b5ed1026c8d031891fa8cd9ba405ace/table_nan_val-1.0.0.tar.gz
+BuildArch: noarch
+
+Requires: python3-numpy
+Requires: python3-pandas
+Requires: python3-matplotlib
+
+%description
+<!--
+ * @Author: BDFD
+ * @Date: 2021-10-27 18:39:19
+ * @LastEditTime: 2021-10-28 10:33:54
+ * @LastEditors: Please set LastEditors
+ * @Description: In User Settings Edit
+ * @FilePath: \6.0-PyPI_Table_Nan_Val\README.md
+-->
+
+# Table_Nan_Val
+
+Check the missing value in Data Frame
+
+## Installation
+
+`pip install table-nan-val`
+
+## How to use it?
+
+`import table_nan_val as tnv`
+
+`tnv.Missing_Value_Analysis(df)`
+then you will get analysis table and graph
+
+## License
+
+copyright @ 2021 BDFD
+
+This repository is licensed under the MIT license. See LICENSE for details.
+
+### References
+
+https://github.com/bdfd/6.1-PyPI_Table_Nan_Val
+
+
+
+
+%package -n python3-table-nan-val
+Summary: find missing value for DataFrame
+Provides: python-table-nan-val
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-table-nan-val
+<!--
+ * @Author: BDFD
+ * @Date: 2021-10-27 18:39:19
+ * @LastEditTime: 2021-10-28 10:33:54
+ * @LastEditors: Please set LastEditors
+ * @Description: In User Settings Edit
+ * @FilePath: \6.0-PyPI_Table_Nan_Val\README.md
+-->
+
+# Table_Nan_Val
+
+Check the missing value in Data Frame
+
+## Installation
+
+`pip install table-nan-val`
+
+## How to use it?
+
+`import table_nan_val as tnv`
+
+`tnv.Missing_Value_Analysis(df)`
+then you will get analysis table and graph
+
+## License
+
+copyright @ 2021 BDFD
+
+This repository is licensed under the MIT license. See LICENSE for details.
+
+### References
+
+https://github.com/bdfd/6.1-PyPI_Table_Nan_Val
+
+
+
+
+%package help
+Summary: Development documents and examples for table-nan-val
+Provides: python3-table-nan-val-doc
+%description help
+<!--
+ * @Author: BDFD
+ * @Date: 2021-10-27 18:39:19
+ * @LastEditTime: 2021-10-28 10:33:54
+ * @LastEditors: Please set LastEditors
+ * @Description: In User Settings Edit
+ * @FilePath: \6.0-PyPI_Table_Nan_Val\README.md
+-->
+
+# Table_Nan_Val
+
+Check the missing value in Data Frame
+
+## Installation
+
+`pip install table-nan-val`
+
+## How to use it?
+
+`import table_nan_val as tnv`
+
+`tnv.Missing_Value_Analysis(df)`
+then you will get analysis table and graph
+
+## License
+
+copyright @ 2021 BDFD
+
+This repository is licensed under the MIT license. See LICENSE for details.
+
+### References
+
+https://github.com/bdfd/6.1-PyPI_Table_Nan_Val
+
+
+
+
+%prep
+%autosetup -n table-nan-val-1.0.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-table-nan-val -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Mon May 29 2023 Python_Bot <Python_Bot@openeuler.org> - 1.0.0-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..d74c348
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+e4a73139c72d895b19aa6c2bb8c5d7df table_nan_val-1.0.0.tar.gz