diff options
author | CoprDistGit <infra@openeuler.org> | 2023-05-18 03:49:25 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-05-18 03:49:25 +0000 |
commit | 46c15ca25f3b3d3ca64f1d7b1440b8287661e2ab (patch) | |
tree | d33e1032f485b5c815ac61767e9efe0325162edd | |
parent | 9f287630bea7e9addc757fb3e330d2c242a92847 (diff) |
automatic import of python-open-aea
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-open-aea.spec | 342 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 344 insertions, 0 deletions
@@ -0,0 +1 @@ +/open-aea-1.34.0.tar.gz diff --git a/python-open-aea.spec b/python-open-aea.spec new file mode 100644 index 0000000..9fcb19f --- /dev/null +++ b/python-open-aea.spec @@ -0,0 +1,342 @@ +%global _empty_manifest_terminate_build 0 +Name: python-open-aea +Version: 1.34.0 +Release: 1 +Summary: Open Autonomous Economic Agent framework (without vendor lock-in) +License: Apache-2.0 +URL: https://github.com/valory-xyz/open-aea.git +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/b4/03/57b46496e0db494aebf9ac5a53362233360c7f3d95ae5bc220d508bcab74/open-aea-1.34.0.tar.gz + +Requires: python3-semver +Requires: python3-base58 +Requires: python3-jsonschema +Requires: python3-packaging +Requires: python3-protobuf +Requires: python3-pymultihash +Requires: python3-pyyaml +Requires: python3-requests +Requires: python3-dotenv +Requires: python3-ecdsa +Requires: python3-morphys +Requires: python3-py-multibase +Requires: python3-py-multicodec +Requires: python3-pyyaml +Requires: python3-jsonschema +Requires: python3-pytest +Requires: python3-coverage +Requires: python3-click +Requires: python3-packaging +Requires: python3-semver +Requires: python3-click +Requires: python3-pyyaml +Requires: python3-jsonschema +Requires: python3-packaging +Requires: python3-pytest +Requires: python3-coverage +Requires: python3-semver +Requires: python3-click +Requires: python3-pyyaml +Requires: python3-jsonschema +Requires: python3-packaging +Requires: python3-pytest +Requires: python3-coverage +Requires: python3-semver + +%description +<h1 align="center"> + <b>Open AEA Framework</b> +</h1> + +<p align="center"> + <a href="https://pypi.org/project/open-aea/"> + <img alt="PyPI" src="https://img.shields.io/pypi/v/open-aea"> + </a> + <a href="https://pypi.org/project/open-aea/"> + <img alt="PyPI - Python Version" src="https://img.shields.io/pypi/pyversions/open-aea"> + </a> + <a> + <img alt="PyPI - Wheel" src="https://img.shields.io/pypi/wheel/open-aea"> + </a> + <a href="https://github.com/valory-xyz/open-aea/blob/main/LICENSE"> + <img alt="License" src="https://img.shields.io/pypi/l/open-aea"> + </a> + <a href="https://pypi.org/project/open-aea/"> + <img alt="Downloads" src="https://img.shields.io/pypi/dm/open-aea"> + </a> +</p> +<p align="center"> + <a href="https://github.com/valory-xyz/open-aea/actions/workflows/workflow.yml"> + <img alt="AEA framework sanity checks and tests" src="https://github.com/valory-xyz/open-aea/workflows/AEA%20framework%20sanity%20checks%20and%20tests/badge.svg?branch=main"> + </a> + <a href=""> + <img alt="Codecov" src="https://img.shields.io/codecov/c/github/valory-xyz/open-aea"> + </a> + <a href="https://img.shields.io/badge/lint-flake8-blueviolet"> + <img alt="flake8" src="https://img.shields.io/badge/lint-flake8-yellow" > + </a> + <a href="https://github.com/python/mypy"> + <img alt="mypy" src="https://img.shields.io/badge/static%20check-mypy-blue"> + </a> + <a href="https://github.com/psf/black"> + <img alt="Black" src="https://img.shields.io/badge/code%20style-black-black"> + </a> + <a href="https://github.com/PyCQA/bandit"> + <img alt="mypy" src="https://img.shields.io/badge/security-bandit-lightgrey"> + </a> +</p> + +<p align="center"> +A framework for autonomous economic agent (AEA) development with no vendor lock-in +</p> + +This is a fork of <a href="https://github.com/fetchai/agents-aea">the original AEA project</a> with the benefit that all vendor lock-in at the package level is removed. This means, there are no dependencies on centrally hosted registries for agent packages and the AEA itself does not prefer any package vendor over another. Where feasible, compatibility with the original AEA framework is maintained. + + +## Get started developing AEAs + +1. Create and launch a clean virtual environment with Python 3.10 (any Python `>=` 3.7 works): + + pipenv --python 3.10 && pipenv shell + +2. Install the package from [PyPI](https://pypi.org/project/open-aea/): + + pip install open-aea[all] + + Or, if you use `zsh` rather than `bash`: + + pip install "open-aea[all]" + +3. Then, build your agent as described in the [docs](https://open-aea.docs.autonolas.tech/). + + +## Cite + +If you are using our software in a publication, please +consider to cite it with the following BibTex entry: + +``` +@misc{agents-aea, + Author = {Marco Favorito and David Minarsch and Ali Hosseini and Aristotelis Triantafyllidis and Diarmid Campbell and Oleg Panasevych and Kevin Chen and Yuri Turchenkov and Lokman Rahmani and Jiří Vestfál and James Riehl and 8baller and Adamantios Zaras and David Vilela and Michiel Karrenbelt and Viraj Patel}, + Title = {Open Autonomous Economic Agent (AEA) Framework}, + Year = {2021}, +} +``` + + +%package -n python3-open-aea +Summary: Open Autonomous Economic Agent framework (without vendor lock-in) +Provides: python-open-aea +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +BuildRequires: python3-cffi +BuildRequires: gcc +BuildRequires: gdb +%description -n python3-open-aea +<h1 align="center"> + <b>Open AEA Framework</b> +</h1> + +<p align="center"> + <a href="https://pypi.org/project/open-aea/"> + <img alt="PyPI" src="https://img.shields.io/pypi/v/open-aea"> + </a> + <a href="https://pypi.org/project/open-aea/"> + <img alt="PyPI - Python Version" src="https://img.shields.io/pypi/pyversions/open-aea"> + </a> + <a> + <img alt="PyPI - Wheel" src="https://img.shields.io/pypi/wheel/open-aea"> + </a> + <a href="https://github.com/valory-xyz/open-aea/blob/main/LICENSE"> + <img alt="License" src="https://img.shields.io/pypi/l/open-aea"> + </a> + <a href="https://pypi.org/project/open-aea/"> + <img alt="Downloads" src="https://img.shields.io/pypi/dm/open-aea"> + </a> +</p> +<p align="center"> + <a href="https://github.com/valory-xyz/open-aea/actions/workflows/workflow.yml"> + <img alt="AEA framework sanity checks and tests" src="https://github.com/valory-xyz/open-aea/workflows/AEA%20framework%20sanity%20checks%20and%20tests/badge.svg?branch=main"> + </a> + <a href=""> + <img alt="Codecov" src="https://img.shields.io/codecov/c/github/valory-xyz/open-aea"> + </a> + <a href="https://img.shields.io/badge/lint-flake8-blueviolet"> + <img alt="flake8" src="https://img.shields.io/badge/lint-flake8-yellow" > + </a> + <a href="https://github.com/python/mypy"> + <img alt="mypy" src="https://img.shields.io/badge/static%20check-mypy-blue"> + </a> + <a href="https://github.com/psf/black"> + <img alt="Black" src="https://img.shields.io/badge/code%20style-black-black"> + </a> + <a href="https://github.com/PyCQA/bandit"> + <img alt="mypy" src="https://img.shields.io/badge/security-bandit-lightgrey"> + </a> +</p> + +<p align="center"> +A framework for autonomous economic agent (AEA) development with no vendor lock-in +</p> + +This is a fork of <a href="https://github.com/fetchai/agents-aea">the original AEA project</a> with the benefit that all vendor lock-in at the package level is removed. This means, there are no dependencies on centrally hosted registries for agent packages and the AEA itself does not prefer any package vendor over another. Where feasible, compatibility with the original AEA framework is maintained. + + +## Get started developing AEAs + +1. Create and launch a clean virtual environment with Python 3.10 (any Python `>=` 3.7 works): + + pipenv --python 3.10 && pipenv shell + +2. Install the package from [PyPI](https://pypi.org/project/open-aea/): + + pip install open-aea[all] + + Or, if you use `zsh` rather than `bash`: + + pip install "open-aea[all]" + +3. Then, build your agent as described in the [docs](https://open-aea.docs.autonolas.tech/). + + +## Cite + +If you are using our software in a publication, please +consider to cite it with the following BibTex entry: + +``` +@misc{agents-aea, + Author = {Marco Favorito and David Minarsch and Ali Hosseini and Aristotelis Triantafyllidis and Diarmid Campbell and Oleg Panasevych and Kevin Chen and Yuri Turchenkov and Lokman Rahmani and Jiří Vestfál and James Riehl and 8baller and Adamantios Zaras and David Vilela and Michiel Karrenbelt and Viraj Patel}, + Title = {Open Autonomous Economic Agent (AEA) Framework}, + Year = {2021}, +} +``` + + +%package help +Summary: Development documents and examples for open-aea +Provides: python3-open-aea-doc +%description help +<h1 align="center"> + <b>Open AEA Framework</b> +</h1> + +<p align="center"> + <a href="https://pypi.org/project/open-aea/"> + <img alt="PyPI" src="https://img.shields.io/pypi/v/open-aea"> + </a> + <a href="https://pypi.org/project/open-aea/"> + <img alt="PyPI - Python Version" src="https://img.shields.io/pypi/pyversions/open-aea"> + </a> + <a> + <img alt="PyPI - Wheel" src="https://img.shields.io/pypi/wheel/open-aea"> + </a> + <a href="https://github.com/valory-xyz/open-aea/blob/main/LICENSE"> + <img alt="License" src="https://img.shields.io/pypi/l/open-aea"> + </a> + <a href="https://pypi.org/project/open-aea/"> + <img alt="Downloads" src="https://img.shields.io/pypi/dm/open-aea"> + </a> +</p> +<p align="center"> + <a href="https://github.com/valory-xyz/open-aea/actions/workflows/workflow.yml"> + <img alt="AEA framework sanity checks and tests" src="https://github.com/valory-xyz/open-aea/workflows/AEA%20framework%20sanity%20checks%20and%20tests/badge.svg?branch=main"> + </a> + <a href=""> + <img alt="Codecov" src="https://img.shields.io/codecov/c/github/valory-xyz/open-aea"> + </a> + <a href="https://img.shields.io/badge/lint-flake8-blueviolet"> + <img alt="flake8" src="https://img.shields.io/badge/lint-flake8-yellow" > + </a> + <a href="https://github.com/python/mypy"> + <img alt="mypy" src="https://img.shields.io/badge/static%20check-mypy-blue"> + </a> + <a href="https://github.com/psf/black"> + <img alt="Black" src="https://img.shields.io/badge/code%20style-black-black"> + </a> + <a href="https://github.com/PyCQA/bandit"> + <img alt="mypy" src="https://img.shields.io/badge/security-bandit-lightgrey"> + </a> +</p> + +<p align="center"> +A framework for autonomous economic agent (AEA) development with no vendor lock-in +</p> + +This is a fork of <a href="https://github.com/fetchai/agents-aea">the original AEA project</a> with the benefit that all vendor lock-in at the package level is removed. This means, there are no dependencies on centrally hosted registries for agent packages and the AEA itself does not prefer any package vendor over another. Where feasible, compatibility with the original AEA framework is maintained. + + +## Get started developing AEAs + +1. Create and launch a clean virtual environment with Python 3.10 (any Python `>=` 3.7 works): + + pipenv --python 3.10 && pipenv shell + +2. Install the package from [PyPI](https://pypi.org/project/open-aea/): + + pip install open-aea[all] + + Or, if you use `zsh` rather than `bash`: + + pip install "open-aea[all]" + +3. Then, build your agent as described in the [docs](https://open-aea.docs.autonolas.tech/). + + +## Cite + +If you are using our software in a publication, please +consider to cite it with the following BibTex entry: + +``` +@misc{agents-aea, + Author = {Marco Favorito and David Minarsch and Ali Hosseini and Aristotelis Triantafyllidis and Diarmid Campbell and Oleg Panasevych and Kevin Chen and Yuri Turchenkov and Lokman Rahmani and Jiří Vestfál and James Riehl and 8baller and Adamantios Zaras and David Vilela and Michiel Karrenbelt and Viraj Patel}, + Title = {Open Autonomous Economic Agent (AEA) Framework}, + Year = {2021}, +} +``` + + +%prep +%autosetup -n open-aea-1.34.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-open-aea -f filelist.lst +%dir %{python3_sitearch}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Thu May 18 2023 Python_Bot <Python_Bot@openeuler.org> - 1.34.0-1 +- Package Spec generated @@ -0,0 +1 @@ +70d9b76507734977b9d1ce3e561bddb8 open-aea-1.34.0.tar.gz |