-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (51 loc) · 1.02 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
49
50
51
52
53
54
55
56
57
58
59
60
[project]
name = "fbenum"
version = "1.0.1"
description = "Library provides fallback enum functionality. Fully compatible with pydantic."
authors = [
{name = "Vadim Suharnikov", email = "vsuharnikov@gmail.com"},
]
dependencies = [
"pydantic-core>=2.14.6",
]
requires-python = ">=3.12"
homepage="https://github.com/vadim-su/fbenum"
readme = "README.md"
license = {text = "MIT"}
keywords = ["enum", "pydantic"]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
package-type = "library"
[tool.pdm.dev-dependencies]
dev = [
"pytest>=7.4.4",
"pydantic>=2.5.3",
"ruff>=0.1.12",
"pre-commit>=3.6.0",
]
[tool.autopep8]
max_line_length = 120
[tool.ruff]
line-length = 120
target-version = "py312"
[tool.ruff.format]
quote-style = "single"
[tool.ruff.lint.isort]
length-sort = true
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# isort
"I",
]