Skip to content
Snippets Groups Projects
pyproject.toml 348 B
Newer Older
  • Learn to ignore specific revisions
  • [build-system]
    # Must be kept in sync with `setup_requirements` in `setup.py`
    requires = [
    
        "wheel",
    
    # Point to the setuptools' PEP517 build backend explicitly to
    # disable Pip's fallback guessing
    build-backend = "setuptools.build_meta"
    
    
    [tool.black]
    line-length = 79
    
    target-version = ["py36"]