-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
62 lines (54 loc) · 1.46 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
58
59
60
61
62
[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 = false
[project]
name = "pytestomatio"
version = "2.10.0"
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"
]
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"
[project.optional-dependencies]
dev = [
"pytest>=7.2.0",
"pytest-testdox>=2.0.0",
"pytest-xdist==3.6.1",
"python-dotenv==1.0.1",
"toml==0.10.2"
]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"smoke: indicates smoke tests"
]