A clone of the arcade game Stacker
https://pypi.org/project/slacker-game/
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.
23 lines
328 B
23 lines
328 B
[tox] |
|
envlist = py |
|
minversion = 3.3 |
|
isolated_build = True |
|
|
|
[testenv] |
|
deps = |
|
flake8-builtins |
|
isort |
|
mypy |
|
commands = |
|
flake8 |
|
isort . --check --diff |
|
mypy slacker_game |
|
|
|
[flake8] |
|
hang-closing = True |
|
ignore = E226, E701, E704, W503 |
|
max-doc-length = 72 |
|
|
|
[isort] |
|
balanced_wrapping = True |
|
combine_as_imports = True
|
|
|