generated from MechanicalFlower/python-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (38 loc) · 1.16 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "godot-asset-library-client"
version = "0.1.0"
description = "A client library for accessing Godot Asset Library"
license = "MIT"
authors = ["Florian Vazelle <florian.vazelle@vivaldi.net>"]
readme = ["README.md"]
repository = "https://github.com/MechanicalFlower/godot-asset-library-client"
include = ["LICENSE.md", "godot-asset-library-godot_asset_library_client/py.typed"]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
httpx = ">=0.20.0,<0.28.0"
attrs = ">=21.3.0"
python-dateutil = "^2.9.0"
[tool.poetry.scripts]
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
pre-commit = "^4.0.1"
openapi-python-client = "^0.21.5"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/MechanicalFlower/godot-asset-library-client/issues"
"Changelog" = "https://github.com/MechanicalFlower/godot-asset-library-client/blob/main/CHANGELOG.md"
[tool.black]
target-version = ["py310"]
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
[tool.ruff]
select = ["F", "I"]
line-length = 88
[tool.mypy]
strict = true
exclude = 'tests'
[tool.bandit]
exclude_dirs = ['tests']