Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Checks: 'clang-diagnostic-*,clang-analyzer-*,clang-diagnostic-*,clang-analyzer-*,bugprone-*,-bugprone-macro-parentheses,bugprone-narrowing-conversions,-bugprone-easily-swappable-parameters,performance-*,portability-*,security-*,moderize*,-clang-analyzer-optin.portability.UnixAPI,-clang-analyzer-optin.mpi.MPI-Checker'
WarningsAsErrors: ''
HeaderFilterRegex: '(\./include.*)|(.*pressio.*)'
AnalyzeTemporaryDtors: false
FormatStyle: none
User: runderwood
CheckOptions:
Expand Down
1 change: 1 addition & 0 deletions .dagger/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/sdk/** linguist-generated
4 changes: 4 additions & 0 deletions .dagger/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/.venv
/**/__pycache__
/sdk
/.env
17 changes: 17 additions & 0 deletions .dagger/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[project]
name = "libpressio"
version = "0.1.0"
requires-python = ">=3.13"
dependencies = [
"dagger-io",
"pandas>=2.3.3",
"pandas-stubs>=2.3.2.250926",
"rich>=14.2.0",
]

[build-system]
requires = ["uv_build>=0.8.4,<0.9.0"]
build-backend = "uv_build"

[tool.uv.sources]
dagger-io = { path = "sdk", editable = true }
16 changes: 16 additions & 0 deletions .dagger/src/libpressio/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
"""A generated module for Libpressio functions

This module has been generated via dagger init and serves as a reference to
basic module structure as you get started with Dagger.

Two functions have been pre-created. You can modify, delete, or add to them,
as needed. They demonstrate usage of arguments and return types using simple
echo and grep commands. The functions can be called from the dagger CLI or
from one of the SDKs.

The first line in this comment block is a short description line and the
rest is a long description with more detail on the module's purpose or usage,
if appropriate. All modules should have a short description.
"""

from .main import Libpressio as Libpressio
Loading