File: setup.cfg

package info (click to toggle)
python-pytest-subtests 0.13.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 176 kB
  • sloc: python: 713; sh: 6; makefile: 3
file content (49 lines) | stat: -rw-r--r-- 1,319 bytes parent folder | download
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
[metadata]
name = pytest-subtests
description = unittest subTest() support and subtests fixture
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/pytest-dev/pytest-subtests
author = Bruno Oliveira
license = MIT
license_file = LICENSE
classifiers =
    Development Status :: 4 - Beta
    Framework :: Pytest
    Intended Audience :: Developers
    Topic :: Software Development :: Testing
    Programming Language :: Python
    Programming Language :: Python :: 3
    Programming Language :: Python :: 3.8
    Programming Language :: Python :: 3.9
    Programming Language :: Python :: 3.10
    Programming Language :: Python :: 3.11
    Programming Language :: Python :: 3.12
    Programming Language :: Python :: Implementation :: CPython
    Operating System :: OS Independent
    License :: OSI Approved :: MIT License
    Typing :: Typed
keywords = test, unittest, pytest

[options]
install_requires =
    attrs>=19.2.0
    pytest>=7.0
    typing_extensions;python_version<"3.8"
python_requires = >=3.7
packages = find:
package_dir =
    = src
setup_requires =
    setuptools
    setuptools-scm>=6.0

[options.packages.find]
where = src

[options.entry_points]
pytest11 =
    subtests = pytest_subtests.plugin

[options.package_data]
pytest_subtests = py.typed