-
Notifications
You must be signed in to change notification settings - Fork 185
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (52 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
64 lines (52 loc) · 1.74 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[tool.poetry]
name = "coveralls"
version = "4.1.0"
description = "Show coverage stats online via coveralls.io"
readme = "README.rst"
repository = "http://github.com/TheKevJames/coveralls-python"
authors = ["Kevin James <coveralls-python@thekev.in>"]
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/"
Repository = "https://github.com/TheKevJames/coveralls-python"
[tool.poetry.scripts]
coveralls = "coveralls.cli:main"
python-coveralls = "coveralls.cli:main"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
coverage = { version = ">=5.0,<8.0,!=6.0.*,!=6.1,!=6.1.1", extras = ["toml"] }
requests = ">=1.0.0,<3.0.0"
typer = ">=0.12.0,<1.0.0"
pyyaml = { version = ">=3.10,<7.0", optional = true }
[tool.poetry.group.dev.dependencies]
pytest = "9.0.2"
responses = "0.26.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = { version = "9.1.0", python = ">=3.12" }
[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"