Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 799 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 799 Bytes

protoactor-python

Proto Actor - Ultra fast distributed actors

Join the chat at https://gitter.im/AsynkronIT/protoactor

Build Status

Getting Started

Ensure you have Python 3.6 with pip installed.

$ pip3 install virtualenv
$ virtualenv dev.venv
$ source dev.venv/bin/activate # on POSIX systems
$ .\dev.venv\Scripts\activate.ps1 # on Windows
$ pip3 install -r requirements.dev.txt

Run mypy

mypy --python-version 3.6 --fast-parser -p protoactor

Run tests

$ tox