|
| 1 | +[project] |
| 2 | +name = "pytest-postgresql" |
| 3 | +version = "4.1.1" |
| 4 | +description = "Postgresql fixtures and fixture factories for Pytest." |
| 5 | +readme = "README.rst" |
| 6 | +keywords = ["tests", "pytest", "fixture", "postgresql"] |
| 7 | +license = {file = "LICENSE"} |
| 8 | +authors = [ |
| 9 | + {name = "Grzegorz Śliwiński", email = "fizyk+pypi@fizyk.dev"} |
| 10 | +] |
| 11 | +classifiers = [ |
| 12 | + "Development Status :: 5 - Production/Stable", |
| 13 | + "Environment :: Web Environment", |
| 14 | + "Intended Audience :: Developers", |
| 15 | + "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", |
| 16 | + "Natural Language :: English", |
| 17 | + "Operating System :: OS Independent", |
| 18 | + "Programming Language :: Python", |
| 19 | + "Programming Language :: Python :: 3", |
| 20 | + "Programming Language :: Python :: 3.8", |
| 21 | + "Programming Language :: Python :: 3.9", |
| 22 | + "Programming Language :: Python :: 3.10", |
| 23 | + "Programming Language :: Python :: 3.11", |
| 24 | + "Programming Language :: Python :: 3 :: Only", |
| 25 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 26 | + "Topic :: Software Development :: Testing", |
| 27 | + "Framework :: Pytest", |
| 28 | +] |
| 29 | +dependencies = [ |
| 30 | + "pytest >= 6.2", |
| 31 | + "port-for >= 0.6.0", |
| 32 | + "mirakuru", |
| 33 | + "setuptools", |
| 34 | +] |
| 35 | +requires-python = ">= 3.8" |
| 36 | + |
| 37 | +[project.urls] |
| 38 | +"Source" = "https://github.com/ClearcodeHQ/pytest-postgresql" |
| 39 | +"Bug Tracker" = "https://github.com/ClearcodeHQ/pytest-postgresql/issues" |
| 40 | +"Changelog" = "https://github.com/ClearcodeHQ/pytest-postgresql/blob/v4.1.1/CHANGES.rst" |
| 41 | + |
| 42 | +[project.entry-points."pytest11"] |
| 43 | +pytest_redis = "pytest_postgresql.plugin" |
| 44 | + |
1 | 45 | [build-system] |
2 | | -requires = ["setuptools >= 40.6.0", "wheel"] |
| 46 | +requires = ["setuptools >= 61.0.0", "wheel"] |
3 | 47 | build-backend = "setuptools.build_meta" |
4 | 48 |
|
| 49 | +[tool.setuptools] |
| 50 | +zip-safe = true |
| 51 | + |
| 52 | +[tool.setuptools.packages.find] |
| 53 | +include = ["pytest_postgresql*"] |
| 54 | +exclude = ["tests*"] |
| 55 | +namespaces = false |
| 56 | + |
| 57 | +[tool.pytest.ini_options] |
| 58 | +xfail_strict=true |
| 59 | +addopts = "--max-worker-restart=0 --showlocals --verbose --cov" |
| 60 | +testpaths = "tests" |
| 61 | +pytester_example_dir = "tests/examples" |
| 62 | +norecursedirs = "examples" |
| 63 | + |
5 | 64 | [tool.black] |
6 | 65 | line-length = 100 |
7 | 66 | target-version = ['py39'] |
8 | 67 | include = '.*\.pyi?$' |
9 | 68 |
|
| 69 | +[tool.pydocstyle] |
| 70 | +ignore = "D203,D212" |
| 71 | + |
10 | 72 | [tool.towncrier] |
11 | 73 | directory = "newsfragments" |
12 | 74 | single_file=true |
|
0 commit comments