-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.06 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
[tool.poetry]
name = "glacier"
version = "0.4.2"
description = ""
authors = ["Hiroki Konishi <[email protected]>"]
license = "MIT"
packages = [
{include = "glacier"}
]
homepage = "https://github.com/relastle/glacier"
repository = "https://github.com/relastle/glacier"
documentation = "https://github.com/relastle/glacier"
[tool.poetry.dependencies]
python = "^3.9"
typing-extensions = "^4.1.1"
click = "^8.0.4"
click-help-colors = "^0.9.1"
importlib-metadata = "^4.11.3"
[tool.poetry.dev-dependencies]
pytest = "==6.0.1"
flake8 = "==3.8.3"
autopep8 = "==1.5.4"
pyflakes = "==2.2.0"
coverage = "==5.2.1"
pyproject-flake8 = "^0.0.1-alpha.2"
mypy = "^0.910"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.flake8]
max-line-length = 88
ignore = "E402 F541 W504"
[tool.mypy]
ignore_missing_imports = true
warn_redundant_casts = true
strict_optional = true
no_implicit_optional = true
show_error_context = true
show_column_numbers = true
disallow_untyped_calls = true
disallow_untyped_defs = true
warn_return_any = true
warn_unused_ignores = false