-
Notifications
You must be signed in to change notification settings - Fork 23
/
pyproject.toml
67 lines (63 loc) · 1.4 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
[tool.poetry]
name = "gtnh"
version = "0.9.0"
description = "GTNH Modpack Updater and Assembler"
authors = ["Jason Mitchell <[email protected]>"]
license = "lgpl 3.0"
[tool.poetry.dependencies]
python = "^3.10"
in-place = "^0.5.0"
pydantic = "~=1.10.0"
retry = "~=0.9.2"
colorama = "^0.4.4"
types-requests = "^2.27.12"
types-retry = "^0.9.5"
mypy = "^0.940"
flake8 = "^6.0.0"
pytest = "^7.1.0"
black = "^22.1.0"
isort = "^5.10.1"
orjson = "^3.7.2"
structlog = "^21.5.0"
gidgethub = "^5.2.0"
httpx = {extras = ["http2"], version = "^0.23.0"}
asyncclick = "^8.1.3"
async-cache = "^1.1.1"
python-dateutil = "^2.8.2"
types-python-dateutil = "^2.8.19"
ttkthemes = "^3.2.2"
types-ttkthemes = "^3.2.4.2"
packaging-legacy = "^23.0.post0"
[tool.black]
line-length = 120
target-version = ['py310']
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)
)
'''
[tool.isort]
src_paths = ["src"]
atomic = true
case_sensitive = true
multi_line_output = 3
include_trailing_comma = true
combine_as_imports = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 120
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"