-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 830 Bytes
/
pyproject.toml
File metadata and controls
36 lines (30 loc) · 830 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
[project]
name = "pl-run-program"
version = "0.0.30"
description = "A simple interface for running non-python programs in python."
readme = "README.md"
authors = [{ name = "Peter Lavigne" }]
requires-python = ">=3.12"
dependencies = []
license = "Apache-2.0"
license-files = ["LICENSE"]
classifiers = ["License :: OSI Approved :: Apache Software License"]
[project.urls]
Homepage = "https://github.com/Peter-Lavigne/pl-run-program"
Repository = "https://github.com/Peter-Lavigne/pl-run-program"
[build-system]
requires = ["uv_build>=0.10.4,<0.11.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pyright==1.1.408",
"pytest==9.0.2",
"pytest-cov==7.0.0",
"ruff==0.15.2",
]
[tool.ruff]
extend = "copied/pyproject.toml"
[tool.pyright]
typeCheckingMode = "strict"
[tool.coverage.run]
omit = ["tests/*"]