forked from brather1ng/PyPoE
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpyproject.toml
48 lines (41 loc) · 1004 Bytes
/
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.black]
line-length = 100
target-version = ["py311"]
[tool.isort]
profile = "black"
[tool.poetry]
name = "PyPoE"
version = "1.1.0"
description = "A suite of tools to export game data for Path of Exile"
authors = ["Your Name <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "PyPoE", from = "." },
]
[tool.poetry.scripts]
pypoe_exporter = 'PyPoE.cli.exporter.core:main'
pypoe_schema_import = 'PyPoE.poe.file.specification.generation.import_dat_schema:main'
[tool.poetry.dependencies]
python = "^3.11"
configobj = "^5.0.6"
colorama = "^0.4.6"
tqdm = "^4.64.1"
mwclient = "^0.11.0"
mwparserfromhell = "^0.6.4"
rapidfuzz = "^3.11.0"
pydds = "~0.0.5"
pyooz = "~0.0.6"
fnvhash = "^0.1.0"
brotli = "^1.0.9"
matplotlib = "^3.8.2"
numpy = "^2.2.1"
[tool.poetry.group.dev.dependencies]
isort = "^5.11.4"
black = "^22.12.0"
flake8 = "^6.0.0"
pytest = "^7.2.0"
pre-commit = "^2.21.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"