-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (61 loc) · 2.15 KB
/
pyproject.toml
File metadata and controls
72 lines (61 loc) · 2.15 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "unittest2pytest"
authors = [{name = "Hartmut Goebel", email = "h.goebel@crazy-compilers.com"}]
license = "GPL-3.0-or-later"
license-files = ["COPYING-GPLv3.txt", "AUTHORS.txt"]
description = "Convert unittest test-cases to pytest"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
"Topic :: Software Development",
"Topic :: Utilities",
]
dynamic = ["readme", "version"]
requires-python = ">=3.9"
dependencies = ["fissix"]
[project.urls]
Homepage = "https://github.com/pytest-dev/unittest2pytest"
[project.scripts]
unittest2pytest = "unittest2pytest.__main__:main"
[tool.setuptools]
packages = ["unittest2pytest", "unittest2pytest.fixes"]
zip-safe = false
include-package-data = false
[tool.setuptools.dynamic]
readme = {file = ["README.rst", "NEWLINE.rst", "CHANGELOG.rst"], content-type = "text/x-rst"}
version = {attr = "unittest2pytest.__version__"}
[tool.zest-releaser]
python-file-with-version = "unittest2pytest/__init__.py"
push-changes = false
tag-format = "v{version}"
tag-message = "unittest2pytest {version}"
tag-signing = true
[tool.ruff]
target-version = "py39"
extend-exclude = ["tests/fixtures"]
[tool.ruff.lint]
select = ["E", "F", "I", "W", "UP"]
ignore = ["E501", "E701", "E741", "UP031"]
[tool.ruff.lint.per-file-ignores]
"unittest2pytest/fixes/fix_remove_class.py" = ["W291"]
"unittest2pytest/fixes/fix_self_assert.py" = ["F841"]
[tool.tox]
env_list = ["py39", "py310", "py311", "py312", "py313", "py314", "py315"]
[tool.tox.env_run_base]
deps = ["pytest"]
commands = [["pytest", "{posargs}"]]