-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
71 lines (65 loc) · 1.79 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
70
71
[build-system]
requires = ["setuptools >= 61.0", "wheel >= 0.41"]
build-backend = "setuptools.build_meta"
[project]
name = "brdocs-validation"
version = "0.4.0"
dependencies = [
"pydantic>=2.0"
]
requires-python = ">= 3.10"
authors = [
{name = "Vinícius Aguiar", email = "vaguiararqdevsoftware@proton.me"},
]
maintainers = [
{name = "Vinícius Aguiar", email = "vaguiararqdevsoftware@proton.me"}
]
description = "Validate brazilian documents using Type Hints in classes inheriting Pydantic's (V2) BaseModel"
readme = "README.md"
keywords = ["pydantic-v2", "cpf-validador", "cnpj-validador", "validador-pispasep", "validador-titulo-eleitor"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Pydantic :: 2",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.urls]
Repository = "https://github.com/vinicius-oa/BRdocs-validation"
[project.optional-dependencies]
dev = [
"build",
"mypy",
"pytest",
"wheel",
"twine",
"tox",
"ruff"
]
[tool.tox]
legacy_tox_ini = """
[tox]
requires =
tox>=4
env_list = py{310,311,312}-pydantic{20,21,22,23,24,25,26}
set_env =
TEMP = {env_tmp_dir}
[testenv]
description = run tests
deps =
pytest>=8
pytest-sugar
commands =
pytest {posargs:tests} --basetemp="{env_tmp_dir}"
[gh]
python =
3.12 = py312-pydantic{20,21,22,23,24,25,26}
3.11 = py311-pydantic{20,21,22,23,24,25,26}
3.10 = py310-pydantic{20,21,22,23,24,25,26}
"""