summaryrefslogtreecommitdiff
path: root/python-butterfree.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-11 10:08:50 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-11 10:08:50 +0000
commit6ff7d3f6770cb9cf74ae845257bb4c0fa2b0ebef (patch)
treedc7726119b971e4cc8d5ebc7d43cb6ee9be16bdb /python-butterfree.spec
parent4793876bf4ae24b4d087282a04d7002400764ddb (diff)
automatic import of python-butterfree
Diffstat (limited to 'python-butterfree.spec')
-rw-r--r--python-butterfree.spec248
1 files changed, 248 insertions, 0 deletions
diff --git a/python-butterfree.spec b/python-butterfree.spec
new file mode 100644
index 0000000..2a81a03
--- /dev/null
+++ b/python-butterfree.spec
@@ -0,0 +1,248 @@
+%global _empty_manifest_terminate_build 0
+Name: python-butterfree
+Version: 1.2.1
+Release: 1
+Summary: A tool for building feature stores - Transform your raw data into beautiful features.
+License: Copyright
+URL: https://github.com/quintoandar/butterfree
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/80/f6/fd9e95e89777deee6695cbc6597065b0bbbc91f070f1991717ac8588009f/butterfree-1.2.1.tar.gz
+BuildArch: noarch
+
+Requires: python3-cassandra-driver
+Requires: python3-mdutils
+Requires: python3-pandas
+Requires: python3-parameters-validation
+Requires: python3-pyspark
+Requires: python3-typer
+Requires: python3-setuptools
+Requires: python3-typing-extensions
+Requires: python3-boto3
+Requires: python3-cmake
+Requires: python3-h3
+
+%description
+## Butterfree
+_A tool for building feature stores. Transform your raw data into beautiful features._
+
+[![Release](https://img.shields.io/github/v/release/quintoandar/butterfree)]((https://pypi.org/project/butterfree/))
+![Python Version](https://img.shields.io/badge/python-3.7%20%7C%203.8-brightgreen.svg)
+[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
+[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
+
+| Source | Downloads | Page | Installation Command |
+|-----------|---------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------|--------------------------------------------|
+| **PyPi** | [![PyPi Downloads](https://pepy.tech/badge/butterfree)](https://pypi.org/project/butterfree/) | [Link](https://pypi.org/project/butterfree/) | `pip install butterfree ` |
+
+### Build status
+| Develop | Stable | Documentation | Sonar |
+|-----------------------------------------------------------------------------|-----------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| ![Test](https://github.com/quintoandar/butterfree/workflows/Test/badge.svg) | ![Publish](https://github.com/quintoandar/butterfree/workflows/Publish/badge.svg) | [![Documentation Status](https://readthedocs.org/projects/butterfree/badge/?version=latest)](https://butterfree.readthedocs.io/en/latest/?badge=latest) | [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=quintoandar_butterfree&metric=alert_status)](https://sonarcloud.io/dashboard?id=quintoandar_butterfree) |
+
+
+Made with :heart: by the **MLOps** team from [QuintoAndar](https://github.com/quintoandar/)
+
+This library supports Python version 3.7+ and meant to provide tools for building ETL pipelines for Feature Stores using [Apache Spark](https://spark.apache.org/).
+
+The library is centered on the following concetps:
+- **ETL**: central framework to create data pipelines. Spark-based **Extract**, **Transform** and **Load** modules ready to use.
+- **Declarative Feature Engineering**: care about **what** you want to compute and **not how** to code it.
+- **Feature Store Modeling**: the library easily provides everything you need to process and load data to your Feature Store.
+
+To understand the main concepts of Feature Store modeling and library main features you can check [Butterfree's Documentation](https://butterfree.readthedocs.io/en/latest/home.html), which is hosted by Read the Docs.
+
+To learn how to use Butterfree in practice, see [Butterfree's notebook examples](https://github.com/quintoandar/butterfree/tree/master/examples)
+
+## Requirements and Installation
+Butterfree depends on **Python 3.7+** and it is **Spark 3.0 ready** :heavy_check_mark:
+
+[PyPI hosts reference to a pip-installable module of this library](https://pypi.org/project/butterfree/), using it is as straightforward as including it on your project's requirements.
+
+```bash
+pip install butterfree
+```
+
+Or after listing `butterfree` in your `requirements.txt` file:
+
+```bash
+pip install -r requirements.txt
+```
+
+Dev Package are available for testing using the <version>.devN versions of the Butterfree on PyPi.
+
+## License
+[Apache License 2.0](https://github.com/quintoandar/butterfree/blob/staging/LICENSE)
+
+## Contributing
+All contributions are welcome! Feel free to open Pull Requests. Check the development and contributing **guidelines** described [here](CONTRIBUTING.md).
+
+
+
+
+%package -n python3-butterfree
+Summary: A tool for building feature stores - Transform your raw data into beautiful features.
+Provides: python-butterfree
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-butterfree
+## Butterfree
+_A tool for building feature stores. Transform your raw data into beautiful features._
+
+[![Release](https://img.shields.io/github/v/release/quintoandar/butterfree)]((https://pypi.org/project/butterfree/))
+![Python Version](https://img.shields.io/badge/python-3.7%20%7C%203.8-brightgreen.svg)
+[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
+[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
+
+| Source | Downloads | Page | Installation Command |
+|-----------|---------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------|--------------------------------------------|
+| **PyPi** | [![PyPi Downloads](https://pepy.tech/badge/butterfree)](https://pypi.org/project/butterfree/) | [Link](https://pypi.org/project/butterfree/) | `pip install butterfree ` |
+
+### Build status
+| Develop | Stable | Documentation | Sonar |
+|-----------------------------------------------------------------------------|-----------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| ![Test](https://github.com/quintoandar/butterfree/workflows/Test/badge.svg) | ![Publish](https://github.com/quintoandar/butterfree/workflows/Publish/badge.svg) | [![Documentation Status](https://readthedocs.org/projects/butterfree/badge/?version=latest)](https://butterfree.readthedocs.io/en/latest/?badge=latest) | [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=quintoandar_butterfree&metric=alert_status)](https://sonarcloud.io/dashboard?id=quintoandar_butterfree) |
+
+
+Made with :heart: by the **MLOps** team from [QuintoAndar](https://github.com/quintoandar/)
+
+This library supports Python version 3.7+ and meant to provide tools for building ETL pipelines for Feature Stores using [Apache Spark](https://spark.apache.org/).
+
+The library is centered on the following concetps:
+- **ETL**: central framework to create data pipelines. Spark-based **Extract**, **Transform** and **Load** modules ready to use.
+- **Declarative Feature Engineering**: care about **what** you want to compute and **not how** to code it.
+- **Feature Store Modeling**: the library easily provides everything you need to process and load data to your Feature Store.
+
+To understand the main concepts of Feature Store modeling and library main features you can check [Butterfree's Documentation](https://butterfree.readthedocs.io/en/latest/home.html), which is hosted by Read the Docs.
+
+To learn how to use Butterfree in practice, see [Butterfree's notebook examples](https://github.com/quintoandar/butterfree/tree/master/examples)
+
+## Requirements and Installation
+Butterfree depends on **Python 3.7+** and it is **Spark 3.0 ready** :heavy_check_mark:
+
+[PyPI hosts reference to a pip-installable module of this library](https://pypi.org/project/butterfree/), using it is as straightforward as including it on your project's requirements.
+
+```bash
+pip install butterfree
+```
+
+Or after listing `butterfree` in your `requirements.txt` file:
+
+```bash
+pip install -r requirements.txt
+```
+
+Dev Package are available for testing using the <version>.devN versions of the Butterfree on PyPi.
+
+## License
+[Apache License 2.0](https://github.com/quintoandar/butterfree/blob/staging/LICENSE)
+
+## Contributing
+All contributions are welcome! Feel free to open Pull Requests. Check the development and contributing **guidelines** described [here](CONTRIBUTING.md).
+
+
+
+
+%package help
+Summary: Development documents and examples for butterfree
+Provides: python3-butterfree-doc
+%description help
+## Butterfree
+_A tool for building feature stores. Transform your raw data into beautiful features._
+
+[![Release](https://img.shields.io/github/v/release/quintoandar/butterfree)]((https://pypi.org/project/butterfree/))
+![Python Version](https://img.shields.io/badge/python-3.7%20%7C%203.8-brightgreen.svg)
+[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
+[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
+
+| Source | Downloads | Page | Installation Command |
+|-----------|---------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------|--------------------------------------------|
+| **PyPi** | [![PyPi Downloads](https://pepy.tech/badge/butterfree)](https://pypi.org/project/butterfree/) | [Link](https://pypi.org/project/butterfree/) | `pip install butterfree ` |
+
+### Build status
+| Develop | Stable | Documentation | Sonar |
+|-----------------------------------------------------------------------------|-----------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| ![Test](https://github.com/quintoandar/butterfree/workflows/Test/badge.svg) | ![Publish](https://github.com/quintoandar/butterfree/workflows/Publish/badge.svg) | [![Documentation Status](https://readthedocs.org/projects/butterfree/badge/?version=latest)](https://butterfree.readthedocs.io/en/latest/?badge=latest) | [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=quintoandar_butterfree&metric=alert_status)](https://sonarcloud.io/dashboard?id=quintoandar_butterfree) |
+
+
+Made with :heart: by the **MLOps** team from [QuintoAndar](https://github.com/quintoandar/)
+
+This library supports Python version 3.7+ and meant to provide tools for building ETL pipelines for Feature Stores using [Apache Spark](https://spark.apache.org/).
+
+The library is centered on the following concetps:
+- **ETL**: central framework to create data pipelines. Spark-based **Extract**, **Transform** and **Load** modules ready to use.
+- **Declarative Feature Engineering**: care about **what** you want to compute and **not how** to code it.
+- **Feature Store Modeling**: the library easily provides everything you need to process and load data to your Feature Store.
+
+To understand the main concepts of Feature Store modeling and library main features you can check [Butterfree's Documentation](https://butterfree.readthedocs.io/en/latest/home.html), which is hosted by Read the Docs.
+
+To learn how to use Butterfree in practice, see [Butterfree's notebook examples](https://github.com/quintoandar/butterfree/tree/master/examples)
+
+## Requirements and Installation
+Butterfree depends on **Python 3.7+** and it is **Spark 3.0 ready** :heavy_check_mark:
+
+[PyPI hosts reference to a pip-installable module of this library](https://pypi.org/project/butterfree/), using it is as straightforward as including it on your project's requirements.
+
+```bash
+pip install butterfree
+```
+
+Or after listing `butterfree` in your `requirements.txt` file:
+
+```bash
+pip install -r requirements.txt
+```
+
+Dev Package are available for testing using the <version>.devN versions of the Butterfree on PyPi.
+
+## License
+[Apache License 2.0](https://github.com/quintoandar/butterfree/blob/staging/LICENSE)
+
+## Contributing
+All contributions are welcome! Feel free to open Pull Requests. Check the development and contributing **guidelines** described [here](CONTRIBUTING.md).
+
+
+
+
+%prep
+%autosetup -n butterfree-1.2.1
+
+%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-butterfree -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 1.2.1-1
+- Package Spec generated