forked from SeldomQA/XTestRunner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (32 loc) · 1.15 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
[tool.poetry]
name = "XTestRunner"
version = "1.7.1"
description = "Modern style test report based on unittest framework."
authors = ["bugmaster <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/seldomQA/XTestRunner/"
repository = "https://github.com/seldomQA/XTestRunner/"
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'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',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
"Topic :: Software Development :: Testing",
'Topic :: Software Development :: Version Control :: Git'
]
[tool.poetry.dependencies]
python = "^3.7"
jinja2 = "^3.1.2"
requests = "^2.22.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"