1
0
mirror of https://github.com/dbcli/pgcli synced 2024-06-24 02:03:20 +00:00
pgcli/pyproject.toml
赖信涛 bc7a5d0100
Drop Python3.5. (#1154)
* Drop Python3.5.

* delete 3.5 from setup.py

* fix black format. Using python3.7 for development now.

* black target to py36
2020-03-11 13:58:13 -07:00

23 lines
258 B
TOML

[tool.black]
line-length = 88
target-version = ['py36']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.cache
| \.pytest_cache
| _build
| buck-out
| build
| dist
| tests/data
)/
'''