-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 1.21 KB
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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "zerobouncesdk"
version = "2.2.0"
description = "ZeroBounce Python API - https://www.zerobounce.net."
readme = "README.md"
authors = [{ name = "ZeroBounce", email = "support@zerobounce.net" }]
license = "MIT"
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["zero", "bounce", "sdk"]
dependencies = ["requests >= 2.22.0"]
requires-python = ">=3.7"
[project.optional-dependencies]
test = ["pytest>=7.0.0", "pytest-cov>=4.0.0"]
[project.urls]
Homepage = "https://github.com/zerobounce/zero-bounce-python-sdk-setup"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py", "zero_bounce_test_case.py"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
filterwarnings = ["ignore::DeprecationWarning"]
[tool.coverage.run]
source = ["src"]
omit = ["*/tests/*", "*__main__*", "*/__main__*"]
branch = true
[tool.coverage.report]
fail_under = 50
show_missing = true
exclude_lines = ["pragma: no cover", "def __repr__", "raise AssertionError"]