Skip to content

Commit b64aa9a

Browse files
committed
oops add pyproject
1 parent 69312aa commit b64aa9a

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
[project]
2+
name = "prevent-cli"
3+
version = "0.1.0"
4+
description = "Add your description here"
5+
readme = "README.md"
6+
license = {file = "LICENSE"}
7+
requires-python = ">=3.9"
8+
authors = [
9+
{ name = "joseph-sentry", email = "joseph.sawaya@sentry.io" }
10+
]
11+
dependencies = [
12+
"codecov-cli>=10.4.0",
13+
]
14+
15+
[project.scripts]
16+
sentry-prevent-cli = "prevent_cli.main:run"
17+
18+
[tool.uv.sources]
19+
codecov-cli = { workspace = true }
20+
21+
[tool.uv.workspace]
22+
members = ["codecov-cli"]
23+
24+
[build-system]
25+
requires = ["setuptools"]
26+
build-backend = "setuptools.build_meta"
27+
28+
[tool.setuptools]
29+
package-dir = {"" = "prevent-cli/src"}
30+
packages = ["prevent_cli"]

0 commit comments

Comments
 (0)