-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (63 loc) · 1.98 KB
/
pyproject.toml
File metadata and controls
74 lines (63 loc) · 1.98 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
[build-system]
requires = ['setuptools>=61.0']
build-backend = "setuptools.build_meta"
[project]
name = 'func-validator'
description = "MATLAB-style function argument validation for Python - clean, simple, and reliable."
authors = [
{ name = "Patrick Boateng", email = "patrickboateng@patrickboateng.tech" },
]
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
requires-python = ">=3.10"
dependencies = []
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
'Programming Language :: Python :: Implementation :: CPython',
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = { attr = "func_validator.__version__" }
[project.urls]
homepage = "https://github.com/patrickboateng/func-validator"
[tool.setuptools.packages.find]
include = ["func_validator*"]
namespaces = false
[tool.pytest.ini_options]
addopts = "-ra --verbose --strict-markers --doctest-plus --doctest-glob '*.md'"
minversion = "6.0"
testpaths = ["tests", "func_validator", "docs"]
doctest_optionflags = ["NORMALIZE_WHITESPACE", "IGNORE_EXCEPTION_DETAIL", "FLOAT_CMP"]
[tool.coverage.report]
show_missing = true
skip_covered = true
[tool.coverage.run]
branch = true
[tool.isort]
profile = "black"
src_paths = ["func_validator"]
[tool.black]
line-length = 79
[dependency-groups]
dev = [
"pytest==8.4.1",
"black==25.1.0",
"isort==6.0.1",
"mkdocs==1.6.1",
"mkdocs-git-committers-plugin-2==2.5.0",
"mkdocs-git-revision-date-localized-plugin==1.4.7",
"mkdocs-material==9.6.18",
"mkdocstrings[python]==0.30.0",
"mktestdocs==0.2.5",
"pytest-cov==6.2.1",
"pytest-doctestplus==1.4.0",
"mkdocs-awesome-nav==3.2.0",
"mkdocs-jupyter>=0.25.1",
]