File: pyproject.toml

package info (click to toggle)
opm-simulators 2025.10%2Bds-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 21,460 kB
  • sloc: cpp: 193,029; sh: 1,807; python: 1,704; lisp: 1,108; makefile: 31; awk: 10
file content (26 lines) | stat: -rw-r--r-- 470 bytes parent folder | download
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
[project]
name = "opm_wheels"
version = "0.1.0"
description = "Wheel tools for OPM"
readme = "README.md"
requires-python = ">=3.11"

packages = [{include = "opm_wheels", from = "src"}]
dependencies = [
    "click>=8.1.8",
]

[project.scripts]
opm-wheels = "opm_wheels.main:main"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.build.targets.wheel]
packages = ["src/opm_wheels"]

[tool.uv]

[tool.coverage.report]
fail_under = 100