-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (48 loc) · 1.29 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[tool.poetry]
name = "gemini-python"
version = "0.6.2"
description = "Gemini is an automatic random testing tool for ScyllaDB."
authors = ["Lukasz Sojka <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
scylla-driver = "^3.25.11"
[tool.poetry.group.dev.dependencies]
pylint = "^2.14.5"
black = "^22.6.0"
mypy = "^0.971"
pytest = "^7.1.2"
pre-commit = "^2.20.0"
setuptools = "^65.6.3"
coverage = "^6.4.4"
pytest-click = "^1.1.0"
toml = "^0.10.2"
types-toml = "^0.10.8.7"
[tool.poetry.scripts]
gemini = 'gemini_python.console:run'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
[tool.pylint.'MESSAGES CONTROL']
disable = "missing-module-docstring, missing-function-docstring, fixme, too-few-public-methods, too-many-arguments"
[tool.pylint.'FORMAT']
# black formats anyway to 100, but not long strings. For these allow len of 140.
max-line-length=140
[tool.mypy]
python_version = "3.10"
strict = true
disallow_any_generics = false
exclude = ["notes"]
[[tool.mypy.overrides]]
module = 'tests.*'
disallow_untyped_defs = false
[tool.coverage.paths]
source = ["gemini_python"]
[tool.coverage.run]
branch = false
source = ["gemini_python"]
[tool.coverage.report]
show_missing = true
fail_under = 80