-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
48 lines (42 loc) · 1.22 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
[build-system]
requires = ["setuptools>=65.5.1", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = [".github", "tests", "build", "dist", ".venv", "pytestomatio.egg-info", ".env", ".gitignore", "CHANGELOG.md"]
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "pep440"
version_provider = "pep621"
update_changelog_on_bump = true
[project]
name = "pytestomatio"
version = "2.8.1"
dependencies = [
"requests>=2.29.0",
"pytest>7.2.0",
"boto3>=1.28.28",
"libcst==1.1.0",
"commitizen>=3.18.1",
"autopep8>=2.1.0",
"pytest-xdist>=3.6.1"
]
authors = [
{ name = "Oleksii Ostapov" },
{ name = "TikoQA" },
]
description = "Pytest plugin to sync test with testomat.io"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Framework :: Pytest",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Testomat.io" = "https://testomat.io/"
"Homepage" = "https://github.com/testomatio/pytestomatio"
"Bug Tracker" = "https://github.com/testomatio/pytestomatio/issues"
[project.entry-points.pytest11]
pytestomatio = "pytestomatio.main"