-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
55 lines (45 loc) · 1.37 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
[tool.poetry]
name = "jsonapi-pydantic"
version = "0.2.5"
description = "JSON:API implementation with pydantic."
authors = ["impocode <[email protected]>"]
maintainers = ["impocode <[email protected]>"]
license= "MIT"
readme = "readme.md"
keywords = ["jsonapi", "pydantic"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Typing :: Typed",
]
homepage = "https://github.com/impocode/jsonapi-pydantic"
repository = "https://github.com/impocode/jsonapi-pydantic"
documentation = "https://github.com/impocode/jsonapi-pydantic"
[tool.poetry.dependencies]
python = "^3.8.1"
pydantic = "^2.1.1"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/impocode/jsonapi-pydantic/issues"
[tool.poetry.group.dev.dependencies]
ruff = "^0.4.8"
pytest = "^8.1.1"
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = [
"F", # pyflakes
"E", # pycodestyle errors
"W", # pycodestyle warnings
"I", # isort
"UP", # pyupgrade
"B", # flake8-bugbear
"C4", # flake8-comprehensions
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"