forked from PathOfBuildingCommunity/PathOfBuilding-Python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 772 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 772 Bytes
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
[tool.poetry]
name = "pathofbuilding-python"
version = "0.1.0"
description = "Python port of Path of Building"
authors = ["ppoelzl <33464174+ppoelzl@users.noreply.github.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
requests = "^2.26.0"
SLPP = "^1.2.3"
PySide6 = "6.6.3.1"
PySide6-Addons = "6.6.3.1"
PySide6-Essentials = "6.6.3.1"
xmltodict = "0.13.0"
psutil = "^5.9.8"
luadata = "^1.0.5"
pyperclip = "^1.8.2"
nuitka = "^2.0.2"
[tool.poetry.dev-dependencies]
black = "^24.1.1"
isort = "^5.13.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.black]
# Match pyCharm's width
line-length = '140'
force-exclude = '.*/ui/.*|^/src/PoB_rc.py'