-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
57 lines (49 loc) · 1.38 KB
/
pyproject.toml
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
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
asyncio_mode = "auto"
addopts = "--ignore=test_build.py"
[build-system]
# Minimum requirements for the build system to execute.
requires = ["flit_core >=3.2,<4"]
# identifies the entry point to the build backend object, using the dotted path as a string.
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "pytest_frappe"
[tool.flit.sdist]
exclude = ["tests/"]
# project’s core metadata
[project]
name = "pytest-frappe"
authors = [
{ name = "0xsirsaif", email = "[email protected]" }
]
description = "Pytest Frappe Plugin - A set of pytest fixtures to test Frappe applications"
readme = "README.md"
# This clearly delineates which metadata is purposefully unspecified and expected to stay unspecified
# compared to being provided via tooling later on.
dynamic = ["version"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Framework :: Pytest",
"Programming Language :: Python :: 3 :: Only",
]
requires-python = ">=3.9"
dependencies = [
"pytest>=7.0.0",
]
[project.optional-dependencies]
dev = [
"flake8",
"pytest",
"isort",
"black",
"mypy",
"flit",
]
[project.urls]
Documentation = "https://github.com/0xsirsaif/pytest-frappe"
[project.entry-points.pytest11]
pytest_frappe = "pytest_frappe.plugin"