-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 921 Bytes
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 921 Bytes
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
[project]
name = "codecov-cli"
version = "11.0.3"
description = "Codecov Command Line Interface"
readme = "README.md"
license-files = ["LICENSE"]
authors = [
{name = "Tom Hu", email = "thomas.hu@sentry.io"},
]
maintainers = [
{name = "Codecov Support", email = "support@codecov.io"},
]
requires-python = ">= 3.9"
dependencies = [
"click==8.*",
"ijson==3.*",
"PyYAML==6.*",
"responses==0.21.*",
"sentry-sdk==2.*",
"test-results-parser==0.5.4",
]
[dependency-groups]
dev = [
"pre-commit==3.*",
"pytest==7.*",
"pytest-asyncio==0.21.1",
"pytest-cov==4.*",
"pytest-env==1.*",
"pytest-mock==3.*",
]
[project.scripts]
codecov = "codecov_cli.main:run"
codecovcli = "codecov_cli.main:run"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["codecov_cli"]
[tool.pytest.ini_options]
env = ["CODECOV_ENV=test"]