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 109 110 111 112 113 114 115 116 117 118 119 120 121
|
[metadata]
name = pytest-skip-markers
description = Pytest Salt Plugin
long_description = file: README.rst
author = Pedro Algarvio
author_email = pedro@algarvio.me
url = https://github.com/saltstack/pytest-skip-markers
project_urls =
Source=https://github.com/saltstack/pytest-skip-markers
Tracker=https://github.com/saltstack/pytest-skip-markers/issues
Documentation=https://pytest-skip-markers.readthedocs.io
license = Apache Software License 2.0
classifiers =
Programming Language :: Python
Programming Language :: Cython
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Development Status :: 5 - Production/Stable
Framework :: Pytest
Typing :: Typed
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
platforms = unix, linux, osx, cygwin, win32
[options]
zip_safe = False
include_package_data = True
package_dir =
=src
packages = find:
python_requires = >= 3.5.2
setup_requires =
setuptools>=50.3.2
setuptools_scm[toml]>=3.4
[options.packages.find]
where = src
exclude =
tests*
[options.extras_require]
docker =
docker
salt =
salt>=3001
[requirements-files]
install_requires = requirements/base.txt
extras_require =
docs = requirements/docs.txt
lint = requirements/lint.txt
tests = requirements/tests.txt
changelog = requirements/changelog.txt
[options.entry_points]
pytest11 =
skip-markers = pytestskipmarkers.plugin
[bdist_wheel]
universal = false
[sdist]
owner = root
group = root
[flake8]
max-line-length = 120
exclude =
.git,
.nox,
__pycache__,
src/pytestskipmarkers/version.py,
build,
dist,
docs/conf.py,
setup.py,
.pre-commit-hooks
per-file-ignores =
__init__.py: F401
noxfile.py: D100,D102,D103,D107,D212,E501
src/pytestskipmarkers/utils/socket.py: F401,F403
tests/*.py: D100,D101,D102,D103
ignore =
D104,
D107,
D212,
D200,
W503
builtins =
__salt__
__opts__
__salt_system_encoding__
docstring-convention = google
[mypy]
python_version = 3.7
mypy_path = src
ignore_missing_imports = True
no_implicit_optional = True
show_error_codes = True
strict_equality = True
warn_redundant_casts = True
warn_return_any = True
warn_unused_configs = True
warn_unused_ignores = True
disallow_any_generics = True
check_untyped_defs = True
no_implicit_reexport = True
[mypy-pytestskipmarkers.utils.socket]
no_implicit_reexport = False
[egg_info]
tag_build =
tag_date = 0
|