-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
69 lines (54 loc) · 1.7 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
61
62
63
64
65
66
67
68
69
[tool.poetry]
name = "pydantic-br"
version = "1.1.0"
description = "Pydantic library extension with Brazilian fields"
license = "MIT"
authors = ["Jorge Silva <[email protected]>"]
maintainers = ["Jorge Silva <[email protected]>"]
readme = "README.md"
repository = "https://github.com/scjorge/pydantic_br"
documentation = "https://pydantic-br.readthedocs.io"
keywords = ["pydantic", "json", "json-schema", "hints", "parsin", "brasil", "documentos", "br", "fastapi", "doc", "documento", "schema"]
packages = [{include = "pydantic_br"}]
classifiers = [
"Natural Language :: Portuguese",
"Framework :: Pydantic",
"Framework :: FastAPI",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology"
]
[tool.poetry.dependencies]
python = "^3.8.1"
[tool.poetry.group.dev.dependencies]
ignr = "^2.2"
pre-commit = "^3.2.1"
taskipy = "^1.10.4"
pydantic = "^2.8.2"
[tool.poetry.group.doc.dependencies]
mkdocstrings = "^0.20.0"
mkdocstrings-python = "^0.8.3"
mkdocs-git-revision-date-plugin = "^0.3.2"
mkdocs = "^1.6.0"
mkdocs-material = "^9.5.30"
pymdown-extensions = "^10.9"
[tool.poetry.group.lint.dependencies]
black = "^23.3.0"
isort = "^5.12.0"
mypy = "^1.1.1"
flake8 = "^7.1.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.2.2"
pytest-cov = "^4.0.0"
faker = "^18.3.1"
pydantic = "^2.8.2"
[tool.isort]
profile = "black"
[tool.flake8]
profile = "black"
[tool.taskipy.tasks]
lint = "black pydantic_br && isort pydantic_br && mypy pydantic_br && flake8 pydantic_br"
test = "pytest tests -s -x --cov --cov-report=term-missing -v -s"
rec = "poetry export -o requirements.txt --only dev"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"