%global _empty_manifest_terminate_build 0 Name: python-beyonic Version: 0.1.16 Release: 1 Summary: The official Python client for the Beyonic.com API License: MIT URL: https://beyonic.com Source0: https://mirrors.nju.edu.cn/pypi/web/packages/ab/59/82abba87f24922c7bd13c4a5cd7497c88524034f9fd9d14f9148e8efffec/beyonic-0.1.16.tar.gz BuildArch: noarch %description # Beyonic Python Library The official Python library for interacting with http://beyonic.com API ## Installation You don't need this source code unless you want to modify the package. If you just want to use the Beyonic Python bindings, you should run: ```python pip install beyonic ``` or ```python easy_install beyonic ``` or manually ```python git clone https://github.com/beyonic/beyonic-python.git cd beyonic-python python setup.py install ``` ## Usage Please visit https://apidocs.beyonic.com/ for usage documentation ## Development Please see DEVELOPMENT.md for information on adding installing requirements, adding new API methods and running tests ## Changelog 0.1.8 - Added `Accounts API Wrapper` for interacting with the `accounts api`. 0.1.14 - Added Network and Currency APIs and ability to set Duplicate-Check-Key header for each request 0.1.15 - Added `banks API wrapper` for interacting with `the banks api` %package -n python3-beyonic Summary: The official Python client for the Beyonic.com API Provides: python-beyonic BuildRequires: python3-devel BuildRequires: python3-setuptools BuildRequires: python3-pip %description -n python3-beyonic # Beyonic Python Library The official Python library for interacting with http://beyonic.com API ## Installation You don't need this source code unless you want to modify the package. If you just want to use the Beyonic Python bindings, you should run: ```python pip install beyonic ``` or ```python easy_install beyonic ``` or manually ```python git clone https://github.com/beyonic/beyonic-python.git cd beyonic-python python setup.py install ``` ## Usage Please visit https://apidocs.beyonic.com/ for usage documentation ## Development Please see DEVELOPMENT.md for information on adding installing requirements, adding new API methods and running tests ## Changelog 0.1.8 - Added `Accounts API Wrapper` for interacting with the `accounts api`. 0.1.14 - Added Network and Currency APIs and ability to set Duplicate-Check-Key header for each request 0.1.15 - Added `banks API wrapper` for interacting with `the banks api` %package help Summary: Development documents and examples for beyonic Provides: python3-beyonic-doc %description help # Beyonic Python Library The official Python library for interacting with http://beyonic.com API ## Installation You don't need this source code unless you want to modify the package. If you just want to use the Beyonic Python bindings, you should run: ```python pip install beyonic ``` or ```python easy_install beyonic ``` or manually ```python git clone https://github.com/beyonic/beyonic-python.git cd beyonic-python python setup.py install ``` ## Usage Please visit https://apidocs.beyonic.com/ for usage documentation ## Development Please see DEVELOPMENT.md for information on adding installing requirements, adding new API methods and running tests ## Changelog 0.1.8 - Added `Accounts API Wrapper` for interacting with the `accounts api`. 0.1.14 - Added Network and Currency APIs and ability to set Duplicate-Check-Key header for each request 0.1.15 - Added `banks API wrapper` for interacting with `the banks api` %prep %autosetup -n beyonic-0.1.16 %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-beyonic -f filelist.lst %dir %{python3_sitelib}/* %files help -f doclist.lst %{_docdir}/* %changelog * Wed May 31 2023 Python_Bot - 0.1.16-1 - Package Spec generated