This repository has been archived by the owner on Jun 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
54 lines (48 loc) · 1.37 KB
/
setup.cfg
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
[metadata]
name = pytest-extra-markers
description = Additional pytest markers to dynamically enable/disable tests via CLI flags
author = iwishiwasaneagle
author_email = [email protected]
license = GPL-3.0-or-later
license_files = LICENSE.txt
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8; variant=GFM
url = https://github.com/iwishiwasaneagle/pytest-extra-markers/
project_urls =
Source = https://github.com/iwishiwasaneagle/pytest-extra-markers/
Changelog = https://github.com/iwishiwasaneagle/pytest-extra-markers/blob/master/CHANGELOG.md
Issue Tracker = https://github.com/iwishiwasaneagle/pytest-extra-markers/issues/
platforms = Linux
classifiers =
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Development Status :: 4 - Beta
Natural Language :: English
Framework :: Pytest
Operating System :: OS Independent
[options]
python_requires = >=3.9
install_requires =
importlib-metadata; python_version<"3.8"
pytest
package_dir =
= src
packages = find:
[options.extras_require]
test =
[options.packages.find]
where = src
exclude =
tests
[options.entry_points]
pytest11 =
extra_markers = extra_markers.markers
[flake8]
max_line_length = 88
extend_ignore = E203, W503
exclude =
build
dist
.eggs
docs/conf.py
per-file-ignores =
__init__.py: F401