-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (81 loc) · 2.04 KB
/
Copy pathpyproject.toml
File metadata and controls
90 lines (81 loc) · 2.04 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "labrea-type-validation"
authors = [
{ name = "Austin Warner", email = "austin.warner@8451.com" },
{ name = "Michael Stoepel", email = "michael.stoepel@8451.com" },
]
description = "Type validation in labrea with pydantic."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python",
]
dependencies = ["labrea>=2.1", "pydantic>=2"]
dynamic = ["version"]
[project.license]
file = "LICENSE"
[tool.hatch.version]
path = "src/labrea_type_validation/_version.py"
[project.urls]
repository = "https://github.com/8451/labrea-type-validation"
documentation = "https://8451.github.io/labrea-type-validation"
bugs = "https://github.com/8451/labrea-type-validation/issues"
[project.optional-dependencies]
test = ["coverage", "coverage-badge", "pytest", "pytest-cov"]
doc = [
"nbsphinx",
"recommonmark",
"sphinx",
"sphinx_rtd_theme",
"sphinxcontrib.napoleon",
"myst-parser",
"sphinxemoji",
]
dev = [
"bump2version",
"mypy",
"black",
"flake8>=3.7.9",
"pre-commit",
"coverage",
"labrea-type-validation[test]",
"labrea-type-validation[doc]",
]
[tool.pytest.ini_options]
testpaths = ["tests/"]
[tool.mypy]
plugins = ["labrea.mypy.plugin"]
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.pyright]
venvPath = "."
venv = "venv"