-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
41 lines (37 loc) · 1.38 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.2"]
build-backend = "setuptools.build_meta"
[project]
name = "pytest-xvfb"
version = "3.0.0"
authors = [{name = "Florian Bruhin", email = "me@the-compiler.org"}]
maintainers = [{name = "Florian Bruhin", email = "me@the-compiler.org"}]
license = {text = "MIT"}
description = "A pytest plugin to run Xvfb (or Xephyr/Xvnc) for tests."
readme = "README.rst"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
requires-python = ">=3.7"
dependencies = ["pytest>=2.8.1", "pyvirtualdisplay>=1.3"]
[project.urls]
Homepage = "https://github.com/The-Compiler/pytest-xvfb"
[project.entry-points]
pytest11 = {xvfb = "pytest_xvfb"}
[tool.setuptools]
py-modules = ["pytest_xvfb"]
include-package-data = false