| 1 | [build-system] |
| 2 | requires = ["setuptools"] |
| 3 | build-backend = "setuptools.build_meta" |
| 4 | |
| 5 | [tool.black] |
| 6 | target-version = ['py36'] |
| 7 | exclude = '.*\.ipynb' |
| 8 | |
| 9 | [tool.isort] |
| 10 | py_version = 36 |
| 11 | include_trailing_comma = "true" |
| 12 | line_length = 88 |
| 13 | multi_line_output = 3 |
| 14 | |