forked from lipu-linku/ilo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (38 loc) · 841 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
[project]
name = "ilo"
version = "0.1.0"
description = ""
authors = []
dependencies = [
"py-cord[speed]>=2.3.0",
"Pillow>=9.3.0",
"python-dotenv>=0.21.0",
"jsonschema-gentypes>=2.4.0",
]
requires-python = ">=3.12"
license = { text = "GPL-3.0" }
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.flake8]
max-line-length = 88
extend-ignore = ["E203", "E501", "F722", "E402"]
# E402 conflicts with isort
[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"pytest>=7.2.0",
"black>=22.10.0",
"pre-commit>=2.20.0",
"isort>=5.10.1",
"flake9>=3.8.3.post2",
]
[tool.pyright]
include = ["public"]
exclude = ["**/__pycache__", "__pypackages__", ".venv"]
venvPath = "."
venv = ".venv"
executionEnvironments = [{ root = "." }]