Metadata-Version: 2.1
Name: aea
Version: 0.1.12
Summary: Autonomous Economic Agent framework
Home-page: https://github.com/fetchai/agents-aea.git
Author: Fetch.AI Limited
License: Apache 2.0
Description: # agents-aea
        A framework for autonomous economic agent (AEA) development
        
        ## Get started
        
        - Create and launch a virtual environment with Python 3.7:
        
              pipenv --python 3.7 && pipenv shell
        
        - Install the package from [pypi](https://pypi.org/project/aea/):
        
        
              pip install aea[all]
        
        
        - Then, build your agent as described in the [docs](https://fetchai.github.io/agents-aea/).
        
        ## Alternatively: Install from Source
        
        ### Cloning
        
        This repository contains submodules. Clone with recursive strategy:
        
        	  git clone git@github.com:fetchai/agents-aea.git --recursive && cd agents-aea
        
        ### Dependencies
        
        All python specific dependencies are specified in the Pipfile (and installed via the commands specified in 'Preliminaries').
        
        Or, you can have more control on the installed dependencies by leveraging the setuptools' extras mechanism (more details later). 
        
        ### Preliminaries
        
        - Create and launch a virtual environment:
        
              pipenv --python 3.7 && pipenv shell
        
        - Install the package from source:
        
              pip install .[all]
        
        - To install only specific extra dependencies, e.g. `cli`:
        
              pip install .[cli]
        
        ### Contribute
        
        The following dependency is only relevant if you intend to contribute to the repository:
        - the project uses [Google Protocol Buffers](https://developers.google.com/protocol-buffers/) compiler for message serialization. A guide on how to install it is found [here](https://fetchai.github.io/oef-sdk-python/user/install.html#protobuf-compiler).
        
        The following steps are only relevant if you intend to contribute to the repository. They are not required for agent development.
        
        - Install development dependencies:
        
        	  pipenv install --dev
        
        - Install package in (development mode):
        
        	  pip install -e .
        
        - After changes to the protobuf schema run:
        
        	  python setup.py protoc
        
        - To run tests (ensure no oef docker containers are running):
        
        	  tox -e py37
        
        - To run linters (code style checks):
        
        	  tox -e flake8
        
        - To run static type checks:
        
        	  tox -e mypy
        
        - Docs:
        
        	* `mkdocs serve` - Start the live-reloading docs server on localhost.
        
        To amend the docs, create a new documentation file in `docs/` and add a reference to it in `mkdocs.yml`.
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Provides-Extra: cli
Provides-Extra: cli_gui
Provides-Extra: fetch
Provides-Extra: ethereum
Provides-Extra: crypto
Provides-Extra: local-connection
Provides-Extra: oef-connection
Provides-Extra: stub-connection
Provides-Extra: default-protocol
Provides-Extra: fipa-protocol
Provides-Extra: oef-protocol
Provides-Extra: all
