forked from mhoangvslev/pydantic_schemaorg
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (30 loc) · 871 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
[tool.poetry]
name = "pydantic2-schemaorg"
version = "0.2.0"
description = 'Pydantic classes for Schema.org'
authors = [
"John Franey",
"Reinoud Baker <[email protected]>",
"Ewout Mante <[email protected]>",
]
license = "MIT"
readme = "README.md"
packages = [{ include = "pydantic2_schemaorg" }]
homepage = "https://github.com/blurry-dev/pydantic2-schemaorg"
repository = "https://github.com/blurry-dev/pydantic2-schemaorg"
documentation = "https://github.com/blurry-dev/pydantic2-schemaorg"
keywords = ["schema.org", "pydantic"]
[tool.poetry.dependencies]
python = "^3.10"
pydantic = "^2.9.2"
[tool.poetry.group.dev.dependencies]
jinja2 = "^3.1.3"
requests = "^2.31.0"
ruff = "^0.3.7"
pytest-watch = "^4.2.0"
[tool.ruff]
target-version = "py310"
line-length = 88
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"