-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (45 loc) · 1.12 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
[tool.poetry]
name = "binlock"
version = "0.1.0"
description = "A simple encoding and encryption program."
authors = ["Blake Lee <blake@volian.org>"]
[tool.poetry.dependencies]
python = "^3.10"
cryptography = "^37.0.4"
[tool.poetry.dev-dependencies]
black = { git = "https://github.com/volitank/black.git", branch = "black-tabs" }
codespell = "^2.1.0"
isort = "^5.10.1"
mypy = "^0.941"
pre-commit = "^2.15.0"
pyupgrade = "^2.31.1"
pydocstyle = "^6.1.1"
pylint = "^2.12.2"
[tool.isort]
py_version = "auto"
balanced_wrapping = true
multi_line_output = 3
combine_as_imports = true
combine_star = true
indent = "\t"
group_by_package = true
known_first_party = ["nala"]
lexicographical = true
profile = "black"
[tool.mypy]
disallow_untyped_decorators = false
ignore_missing_imports = true
no_warn_unused_ignores = true
pretty = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
strict = true
[tool.pydocstyle]
add_select = "D211, D212"
ignore = "D206, D203, D213"
[tool.poetry.scripts]
binlock = "binlock.__main__:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"