-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (43 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
42
43
44
45
46
[build-system]
requires = [
"setuptools>=61.0.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "pytest-deselect-if"
description = "A plugin to deselect pytests tests rather than using skipif"
version = "0.1.1"
readme = "README.rst"
requires-python = ">=3.9"
authors = [
{ name = "Jason Giancono", email = "jasongiancono@gmail.com" },
]
maintainers = [
{ name = "Jason Giancono", email = "jasongiancono@gmail.com" },
]
license = {file = "LICENSE"}
classifiers = [
"Framework :: Pytest",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"pytest>=6.2.0",
]
[project.urls]
Repository = "https://github.com/jasongi/pytest-deselect-if"
[project.entry-points.pytest11]
pytest_deselect_if = "pytest_deselect_if.plugin"
[tool.mypy]
files = "src"