-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.34 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (45 loc) · 1.34 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "pytest-starter-config"
version = "0.1.0"
description = "Generate an opinionated, well-commented pytest config, conftest.py, and starter tests."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
authors = [{ name = "python-testing-debugging" }]
keywords = [
"pytest",
"configuration",
"conftest",
"fixtures",
"markers",
"coverage",
"scaffold",
"generator",
]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Testing",
]
dependencies = []
[project.scripts]
pytest-starter-config = "pytest_starter_config.cli:main"
[project.urls]
Homepage = "https://python-testing-debugging.com"
Source = "https://github.com/python-testing-debugging/pytest-starter-config"
[tool.setuptools.packages.find]
include = ["pytest_starter_config*"]
exclude = ["tests*", "examples*"]
# This project's own (deliberately lenient) test configuration. The *strict*
# config lives in the templates the generator emits — see the README.
[tool.pytest.ini_options]
minversion = "7.0"
testpaths = ["tests"]
addopts = "-ra"