%global _empty_manifest_terminate_build 0 Name: python-inventree Version: 0.11.2 Release: 1 Summary: Python interface for InvenTree inventory management system License: MIT URL: https://github.com/inventree/inventree-python/ Source0: https://mirrors.nju.edu.cn/pypi/web/packages/c9/ff/ab39ec1911046407f7c8051b307e4d63ade0a58f2f2719ac5b68691875be/inventree-0.11.2.tar.gz BuildArch: noarch Requires: python3-requests %description [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![PyPI](https://img.shields.io/pypi/v/inventree)](https://pypi.org/project/inventree/) ![Build Status](https://github.com/inventree/inventree-python/actions/workflows/ci.yaml/badge.svg) [![Coverage Status](https://coveralls.io/repos/github/inventree/inventree-python/badge.svg)](https://coveralls.io/github/inventree/inventree-python) ![PEP](https://github.com/inventree/inventree-python/actions/workflows/pep.yaml/badge.svg) ## InvenTree Python Interface Python library for communication with the [InvenTree parts management system](https:///github.com/inventree/inventree) using the integrated REST API. This library provides a class-based interface for interacting with the database. Each database table is represented as a class object which provides features analogous to the REST CRUD endpoints (Create, Retrieve, Update, Destroy). ## Installation The InvenTree python library can be easily installed using PIP: ``` pip install inventree ``` ## Documentation Refer to the [InvenTree documentation](https://docs.inventree.org/en/latest/api/python/python/) %package -n python3-inventree Summary: Python interface for InvenTree inventory management system Provides: python-inventree BuildRequires: python3-devel BuildRequires: python3-setuptools BuildRequires: python3-pip %description -n python3-inventree [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![PyPI](https://img.shields.io/pypi/v/inventree)](https://pypi.org/project/inventree/) ![Build Status](https://github.com/inventree/inventree-python/actions/workflows/ci.yaml/badge.svg) [![Coverage Status](https://coveralls.io/repos/github/inventree/inventree-python/badge.svg)](https://coveralls.io/github/inventree/inventree-python) ![PEP](https://github.com/inventree/inventree-python/actions/workflows/pep.yaml/badge.svg) ## InvenTree Python Interface Python library for communication with the [InvenTree parts management system](https:///github.com/inventree/inventree) using the integrated REST API. This library provides a class-based interface for interacting with the database. Each database table is represented as a class object which provides features analogous to the REST CRUD endpoints (Create, Retrieve, Update, Destroy). ## Installation The InvenTree python library can be easily installed using PIP: ``` pip install inventree ``` ## Documentation Refer to the [InvenTree documentation](https://docs.inventree.org/en/latest/api/python/python/) %package help Summary: Development documents and examples for inventree Provides: python3-inventree-doc %description help [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![PyPI](https://img.shields.io/pypi/v/inventree)](https://pypi.org/project/inventree/) ![Build Status](https://github.com/inventree/inventree-python/actions/workflows/ci.yaml/badge.svg) [![Coverage Status](https://coveralls.io/repos/github/inventree/inventree-python/badge.svg)](https://coveralls.io/github/inventree/inventree-python) ![PEP](https://github.com/inventree/inventree-python/actions/workflows/pep.yaml/badge.svg) ## InvenTree Python Interface Python library for communication with the [InvenTree parts management system](https:///github.com/inventree/inventree) using the integrated REST API. This library provides a class-based interface for interacting with the database. Each database table is represented as a class object which provides features analogous to the REST CRUD endpoints (Create, Retrieve, Update, Destroy). ## Installation The InvenTree python library can be easily installed using PIP: ``` pip install inventree ``` ## Documentation Refer to the [InvenTree documentation](https://docs.inventree.org/en/latest/api/python/python/) %prep %autosetup -n inventree-0.11.2 %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-inventree -f filelist.lst %dir %{python3_sitelib}/* %files help -f doclist.lst %{_docdir}/* %changelog * Fri May 05 2023 Python_Bot - 0.11.2-1 - Package Spec generated