maturin 0.7.2

Build and publish crates with pyo3, rust-cpython and cffi bindings as well as rust binaries as python packages
Documentation
# Workaround to bootstrap maturin on non-manylinux platforms
[build-system]
requires = ["setuptools~=41.2.0", "wheel~=0.33.6"]
build-backend = "setuptools.build_meta"

[tool.maturin]
bindings = "bin"

[tool.black]
target_version = ['py35']
include = '\.pyi?$'
exclude = '''
(
  /(
      \.eggs
    | \.git
    | \.mypy_cache
    | \.tox
    | \.venv
    | venv
    | .*/venv.*
    | target
    | dist
  )/
)
'''