-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
42 lines (38 loc) · 1.06 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
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm>=6.2"
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "behave-xray"
dynamic = ["version"]
authors = [
{ name = "Lukasz Fundakowski", email = "[email protected]" }
]
description = "Behave JIRA XRAY results uploader"
readme = "README.rst"
requires-python = ">=3.7"
keywords = ["behave, 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",
]
dependencies = [
"behave",
"requests",
"pluggy"
]
[project.urls]
homepage = "https://github.com/fundakol/behave-xray"
[tool.behave.formatters]
xray-formatter = "behave_xray:XrayFormatter"