[build-system] requires = ["poetry>=1.0.9,<2.0"] build-backend = "poetry.masonry.api" [tool.poetry] name = "simple-hypercore-protocol" version = "0.0.1a2" description = "The Hypercore protocol state machine" authors = ["decentral1se "] maintainers = ["decentral1se "] license = "GPLv3" readme = "README.md" repository = "https://github.com/hyperpy/simple-hypercore-protocol" keywords = [] [tool.poetry.dependencies] python = "^3.6" protobuf = "^3.12.4" [tool.poetry.dev-dependencies] black = "^19.10b0" flake8 = "^3.8.3" isort = "^5.0.2" grpcio-tools = "^1.31.0" [tool.black] line-length = 80 target-version = ["py38"] include = '\.pyi?$' [tool.isort] include_trailing_comma = true known_first_party = "simple-hypercore-protocol" known_third_party = "pytest" line_length = 80 multi_line_output = 3 skip = ".tox" [tool.tox] legacy_tox_ini = """ [tox] envlist = {py36,py37,py38} lint sort format type skip_missing_interpreters = True isolated_build = True [testenv] deps = pytest pytest-cov pytest-mock commands = pytest test/ --cov={toxinidir}/simple_hypercore_protocol/ --no-cov-on-fail {posargs} [testenv:lint] skipdist = True deps = flake8 commands = flake8 {posargs:--max-line-length 80} simple_hypercore_protocol/ test/ [testenv:sort] skipdist = True deps = isort commands = isort {posargs:-c} simple_hypercore_protocol/ test/ [testenv:format] skipdist = True deps = black commands = black {posargs:--check} simple_hypercore_protocol/ test/ [testenv:type] skipdist = True deps = mypy commands = mypy {posargs:--ignore-missing-imports} simple_hypercore_protocol/ test/ """