-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (37 loc) · 1.33 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
[build-system]
requires = ["setuptools >=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pytest-beartype"
version = "0.2.0"
description = "Pytest plugin to run your tests with beartype checking enabled."
authors = [{ name = "Tushar Sadhwani", email = "tushar.sadhwani000@gmail.com" }]
readme = "README.md"
requires-python = ">=3.8"
urls.Source = "https://github.com/tusharsadhwani/pytest-beartype"
license = { text = "MIT" }
classifiers = [
"Framework :: Pytest",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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 :: Implementation :: CPython",
"Typing :: Typed",
]
dependencies = ["beartype>=0.19.0", "pytest"]
optional-dependencies.dev = ["black", "mypy", "pytest-cov", "tox"]
entry-points.pytest11.pytest_beartype = "pytest_beartype"
[tool.setuptools]
package-data = { "*" = ["py.typed"] }
packages.find.where = ["./src"]
[tool.pytest.ini_options]
addopts = ["--cov", "--cov-report=term-missing"]
[tool.mypy]
strict = true
exclude = "venv|build"