Generic python Markov chain system
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
[tox]
|
|
envlist = py36, py37, py38, py39
|
|
|
|
[testenv]
|
|
deps =
|
|
flake8
|
|
mypy
|
|
commands =
|
|
flake8
|
|
mypy carkov typehints
|
|
|
|
[flake8]
|
|
max-line-length = 120
|
|
max-complexity = 15
|
|
|
|
|
|
|
|
|