-
-
Notifications
You must be signed in to change notification settings - Fork 188
/
pyproject.toml
63 lines (51 loc) · 1.68 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
63
[tool.poetry]
name = "coveralls"
version = "4.0.1"
description = "Show coverage stats online via coveralls.io"
readme = "README.rst"
repository = "http://github.com/TheKevJames/coveralls-python"
authors = ["Kevin James <[email protected]>"]
license = "MIT"
packages = [
{ include = "coveralls" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Testing",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[tool.poetry.urls]
Changelog = "https://github.com/TheKevJames/coveralls-python/blob/master/CHANGELOG.md"
Docs = "https://coveralls-python.rtfd.io/"
[tool.poetry.scripts]
coveralls = "coveralls.cli:main"
python-coveralls = "coveralls.cli:main"
[tool.poetry.dependencies]
python = ">=3.8,<3.13"
coverage = { version = ">=5.0,<8.0,!=6.0.*,!=6.1,!=6.1.1", extras = ["toml"] }
docopt = ">=0.6.1,<0.7.0"
requests = ">=1.0.0,<3.0.0"
pyyaml = { version = ">=3.10,<7.0", optional = true }
[tool.poetry.group.dev.dependencies]
pytest = "8.3.3"
responses = "0.25.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = { version = "7.4.7", python = ">=3.9" }
[tool.poetry.extras]
yaml = ["pyyaml"]
[tool.pytest.ini_options]
# addopts = "-Werror"
filterwarnings = [
"error",
# cov5 and cov6 are deprecated on py3.12+
"ignore:co_lnotab is deprecated, use co_lines instead:DeprecationWarning",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"