summaryrefslogtreecommitdiff
path: root/python-arcus-azureml.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-12 07:19:19 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-12 07:19:19 +0000
commite2ba0aff53e9cd928c55d0a9b151eefdc90ffe8e (patch)
tree70ff104b35d9f17326b87d6d684f0938c17c0f9d /python-arcus-azureml.spec
parent73ffc2e52df9b4618f77b24c2fea163d66d15278 (diff)
automatic import of python-arcus-azuremlopeneuler20.03
Diffstat (limited to 'python-arcus-azureml.spec')
-rw-r--r--python-arcus-azureml.spec105
1 files changed, 105 insertions, 0 deletions
diff --git a/python-arcus-azureml.spec b/python-arcus-azureml.spec
new file mode 100644
index 0000000..d05e900
--- /dev/null
+++ b/python-arcus-azureml.spec
@@ -0,0 +1,105 @@
+%global _empty_manifest_terminate_build 0
+Name: python-arcus-azureml
+Version: 1.1.2.2.2022030301
+Release: 1
+Summary: A Python library to improve MLOps methodology on Azure Machine Learning
+License: MIT License
+URL: https://github.com/arcus-azure/arcus.azureml
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/4f/51/8d55e5b60680c6719cc5b3f5a44c274c406ec09313492896b33a2104d416/arcus-azureml-1.1.2.2.2022030301.tar.gz
+BuildArch: noarch
+
+Requires: python3-pandas
+Requires: python3-numpy
+Requires: python3-arcus-ml
+Requires: python3-azureml-core
+Requires: python3-joblib
+Requires: python3-pytest
+
+%description
+# Arcus for Azure Machine Learning
+
+This package for Python allows users to better collaborate around Azure MLOps and abstracts a lot of the complexities when running experiments and trainings locally or in the cloud.
+
+Support for
+
+- Remote tracking of experiments
+- Distributed training
+
+
+
+%package -n python3-arcus-azureml
+Summary: A Python library to improve MLOps methodology on Azure Machine Learning
+Provides: python-arcus-azureml
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-arcus-azureml
+# Arcus for Azure Machine Learning
+
+This package for Python allows users to better collaborate around Azure MLOps and abstracts a lot of the complexities when running experiments and trainings locally or in the cloud.
+
+Support for
+
+- Remote tracking of experiments
+- Distributed training
+
+
+
+%package help
+Summary: Development documents and examples for arcus-azureml
+Provides: python3-arcus-azureml-doc
+%description help
+# Arcus for Azure Machine Learning
+
+This package for Python allows users to better collaborate around Azure MLOps and abstracts a lot of the complexities when running experiments and trainings locally or in the cloud.
+
+Support for
+
+- Remote tracking of experiments
+- Distributed training
+
+
+
+%prep
+%autosetup -n arcus-azureml-1.1.2.2.2022030301
+
+%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-arcus-azureml -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Wed Apr 12 2023 Python_Bot <Python_Bot@openeuler.org> - 1.1.2.2.2022030301-1
+- Package Spec generated