-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
83 lines (72 loc) · 1.38 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[tool.poetry]
name = "ghreport"
version = "1.0.0"
description = ""
authors = ["Ivan Ogasawara <[email protected]>"]
license = "MIT"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = "^3.10"
aiohttp = "^3.7.1"
Jinja2 = "^3"
requests = "^2.23"
python-dotenv = ">=0.21.1"
pandas = "^1.4.2"
pandoc = "^2.1"
tabulate = "^0.8.9"
websockets = "^8.1"
gql = "^3"
atpublic = "^4.0"
pyyaml = ">=5.4"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
isort = "^5.10.1"
pre-commit = "^3"
ruff = "^0.0.282"
vulture = "^2.7"
bandit = "^1.7.5"
mypy = "^1.4.1"
makim = "1.8.2"
pytest = ">=6"
pdbpp = "^0.10.3"
[tool.black]
line-length = 79
target-version = ["py38"]
force-exclude = '''(?x)(
docs/*
| .*\\.egg-info
)''' # TOML's single-quoted strings do not require escaping backslashes
[tool.bandit]
exclude_dirs = ["tests"]
targets = "ghreport"
[tool.vulture]
exclude = ["tests"]
ignore_decorators = []
ignore_names = []
make_whitelist = true
min_confidence = 80
paths = ["src/astx"]
sort_by_size = true
verbose = false
[tool.ruff]
line-length = 79
force-exclude = true
src = ["ghreport"]
exclude = [
'docs',
]
select = [
"F", # pyflakes
]
[tool.ruff.pydocstyle]
convention = "numpy"
[tool.mypy]
no_strict_optional = false
[[tool.mypy.overrides]]
module = [
"pandas",
"yaml"
]
ignore_missing_imports = true