-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.26 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
[project]
name = "codecov-cli"
version = "11.2.7"
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.0.0,<8.3.0",
"ijson==3.*",
"PyYAML==6.*",
"requests>=2.25.0",
"sentry-sdk==2.*",
"test-results-parser==0.6.1",
]
[dependency-groups]
dev = [
"pre-commit==3.*",
"pyinstaller==6.*",
"pytest==7.*",
"pytest-cov==4.*",
"pytest-env==1.*",
"pytest-mock==3.*",
"responses==0.21.*",
]
[project.scripts]
codecov = "codecov_cli.main:run"
codecovcli = "codecov_cli.main:run"
codecov-cli = "codecov_cli.main:run"
[project.urls]
Homepage = "https://about.codecov.io"
"CI: GitHub" = "https://github.com/getsentry/prevent-cli/actions/workflows/ci.yml"
"Docs" = "https://docs.codecov.com"
"GitHub: issues" = "https://github.com/getsentry/prevent-cli/issues"
"GitHub: repo" = "https://github.com/getsentry/prevent-cli"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["codecov_cli"]
[tool.pytest.ini_options]
env = ["CODECOV_ENV=test"]