-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
108 lines (73 loc) · 2.72 KB
/
pyproject.toml
File metadata and controls
108 lines (73 loc) · 2.72 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[build-system]
requires = [
"commitizen==3.28.0",
"setuptools>=80.9.0",
"setuptools-scm>=9.2.2",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "pytest-simplified"
description = "A PyTest plugin to simplify testing classes."
version = "1.0.0-rc3"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.10"
license = "AGPL-3.0-only"
authors = [
{ name = "No Fuss Computing", email = "helpdesk@nofusscomputing.com" }
]
maintainers = [
{ name = "No Fuss Computing", email = "helpdesk@nofusscomputing.com" }
]
dependencies = [
"pytest>=8.3.5,<9.0.0"
]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent"
]
[project.entry-points."pytest11"]
src = "pytest_simplified.plugin"
[project.urls]
# Documentation = "https://nofusscomputing.com/projects/pytest/simplified"
Changelog = "https://github.com/nofusscomputing/pytest_simplified/blob/master/CHANGELOG.md"
Homepage = "https://nofusscomputing.com/git/pytest/simplified"
Issues = "https://nofusscomputing.com/git/pytest/simplified/issues"
releasenotes = "https://github.com/nofusscomputing/pytest_simplified/blob/master/Release-Notes.md"
Source = "https://nofusscomputing.com/git/pytest/simplified"
[tool.commitizen]
name = "cz_customize"
version_provider = "pep621"
prerelease_offset = 1
tag_format = "$version"
update_changelog_on_bump = false
version_scheme = "semver"
[tool.commitizen.customize]
change_type_map = { "feature" = "Features", "fix" = "Fixes", "refactor" = "Refactoring", "test" = "Tests" }
change_type_order = [ "BREAKING CHANGE", "feat", "fix", "test", "refactor" ]
commit_parser = "^(?P<change_type>feat|fix|test|refactor|perf|BREAKING CHANGE)(?:\\((?P<scope>[^()\r\n]*)\\)|\\()?(?P<breaking>!)?:\\s(?P<message>.*)?"
[tool.setuptools]
packages = ["pytest_simplified"]
[tool.setuptools_scm]
root = 'pytest_simplified'
[tool.pytest.ini_options]
addopts = '--no-migrations --cov --cov-branch --cov-report term --tb=long --verbosity=2 --showlocals pytest_simplified'
junit_family = 'xunit2'
# -- recommended but optional:
# python_files = 'tests.py test_*.py *_tests.py'
log_cli = false
log_cli_level = 'DEBUG'
log_cli_format = '%(asctime)s %(levelname)s %(message)s'
log_cli_date_format = '%Y-%m-%d %H:%M:%S'