forked from dolthub/doltcli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (40 loc) · 902 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[project]
name = "lumicks-doltcli"
version = "0.3.0"
license = {file = "LICENSE"}
description = "Slim Python interface for Dolt's CLI API."
authors = [
{name = "Max Hoffman", email = "[email protected]"},
{name = "Oscar Batori", email = "[email protected]"},
{name = "LUMICKS ml-team", email = "[email protected]"}
]
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python"
]
[tool.isort]
profile = "black"
line_length = 100
[tool.black]
line-length = 100
target-version = ["py38"]
exclude = '''
(
/(
\.git
| \.github
| \.venv
)/
)
'''
[tool.flake8]
ignore = ['W504', 'E501', 'F407', 'W503', 'E203', 'C901']
max-line-length = 100
max-complexity = 18
select = ['B', 'C', 'E', 'F', 'W', 'T4', 'B9']
exclude = ['.venv']
per-file-ignores = ['**/__init__.py:F401']
[tool.mypy]
python_version = "3.8"
warn_unused_configs = true
ignore_missing_imports = true