-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
57 lines (51 loc) · 1.37 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
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm[toml]>=6.2"
]
build-backend = "setuptools.build_meta"
[project]
name = "pytest-jira-xray"
dynamic = ["version"]
authors = [
{name = "Lukasz Fundakowski", email = "fundakol@yahoo.com"}
]
description = "pytest plugin to integrate tests with JIRA XRAY"
readme = "README.rst"
requires-python = ">=3.7"
keywords = ["pytest, JIRA, XRAY"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"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",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Framework :: Pytest"
]
dependencies = [
"pytest>=6.2.4",
"requests"
]
[project.urls]
homepage = "https://github.com/fundakol/pytest-jira-xray"
[project.entry-points.pytest11]
xray = "pytest_xray.plugin"
[tool.setuptools_scm]
[tool.black]
line-length = 120
skip-string-normalization = true
target-version = ['py37']
[tool.isort]
profile = "black"
src_paths = ["src", "tests"]
filter_files = true
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88