forked from repoe-fork/repoe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 727 Bytes
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 727 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
[tool.poetry]
name = "repoe"
version = "1.0.0"
description = "Repository of Path of Exile resources for tool developers."
authors = ["brather1ng"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "RePoE", from = "." },
]
[tool.poetry.scripts]
repoe = 'RePoE.run_parser:main'
[tool.poetry.dependencies]
python = "^3.11"
pillow = "12.1.1"
requests = "^2.31.0"
pypoe = {path = "../PyPoE", develop = true}
pydantic = "^2.7.1"
datamodel-code-generator = "<0.29.0"
[tool.poetry.group.dev.dependencies]
datamodel-code-generator = ">0.25.0"
json-schema-for-humans = "^1.0.1"
pre-commit = "^2.21.0"
[tool.black]
line-length = 120
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"