Skip to content

Commit 95e01b3

Browse files
committed
Initial commit - DUR MVP professionalized pipeline
0 parents  commit 95e01b3

File tree

8 files changed

+892
-0
lines changed

8 files changed

+892
-0
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.ipynb_checkpoints/
2+
__pycache__/
3+
*.pyc
4+
.env
5+
.venv
6+
.cache/
7+
.DS_Store

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# dur_mvp
2+
3+
Professionalized, minimal Python package extracted from your notebook.
4+
5+
## quick start
6+
7+
Run these commands in your terminal:
8+
9+
pip install -e .
10+
python -m dur_mvp.pipeline --help
11+
python -m dur_mvp.pipeline
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"id": "eeef9629",
6+
"metadata": {},
7+
"source": [
8+
"# Minimal runner for dur_mvp"
9+
]
10+
},
11+
{
12+
"cell_type": "code",
13+
"execution_count": null,
14+
"id": "318cb6cf",
15+
"metadata": {},
16+
"outputs": [],
17+
"source": [
18+
"from dur_mvp.pipeline import run\n",
19+
"run()"
20+
]
21+
}
22+
],
23+
"metadata": {},
24+
"nbformat": 4,
25+
"nbformat_minor": 5
26+
}

pyproject.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[build-system]
2+
requires = ["setuptools>=61"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "dur_mvp"
7+
version = "0.1.0"
8+
description = "Professionalized pipeline extracted from a notebook"
9+
readme = "README.md"
10+
requires-python = ">=3.9"
11+
authors = [{name="You"}]
12+
13+
[tool.setuptools.packages.find]
14+
where = ["src"]

src/dur_mvp/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
"""dur_mvp: Professionalized package extracted from notebook. Generated on 2025-10-15T23:31:48."""
2+
__all__ = []

0 commit comments

Comments
 (0)