-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (46 loc) · 1.21 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
[tool.poetry]
name = "yni"
version = "0.1.5"
description = "A parser for the yni config file."
authors = ["Alex Hutz <[email protected]>"]
license = "MPL-2.0"
readme = 'README.md'
homepage = "https://github.com/FrostiiWeeb/yni"
repository = "https://github.com/FrostiiWeeb/yni"
keywords = ['yni', 'config', 'parser', 'configuration']
build = "build.py"
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[tool.isort]
profile = "black"
line_length = 121
atomic = true
combine_as_imports = true
lines_between_types = 1
[tool.black]
target-version = ['py310']
line-length = 121
[tool.mypy]
python_version = "3.10"
show_column_numbers = true
show_error_codes = true
# same as mypy --strict
disallow_subclassing_any = true
disallow_any_generics = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_unused_ignores = true
warn_return_any = true
no_implicit_reexport = true
strict_equality = true
[[tool.mypy.overrides]]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools>=42"]
build-backend = "poetry.core.masonry.api"