Metadata-Version: 2.4
Name: arg-dashboard
Version: 0.3.0
Summary: Project description
Author-email: Your Name <your@email.com>
License: MIT
Project-URL: Homepage, https://github.com/munch-group/arg-dashboard
Project-URL: Repository, https://github.com/munch-group/arg-dashboard
Project-URL: Documentation, https://munch-group.org/arg-dashboard
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: <3.14,>=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: ipykernel
Requires-Dist: jupyter
Requires-Dist: dash
Requires-Dist: dash-bootstrap-components
Requires-Dist: pandas
Requires-Dist: networkx
Requires-Dist: jupyter-dash
Requires-Dist: jupyter-server-proxy<5,>=4.4
Requires-Dist: plotly
Requires-Dist: seaborn
Requires-Dist: quartodoc
Requires-Dist: quarto
Requires-Dist: pip
Requires-Dist: pytest
Dynamic: license-file


# Template repository for a library project

## Initial set up

```bash
pixi run init
```

## Get updates to upstream fork

Add upstream if not already added

```bash
git remote add upstream https://github.com/munch-group/arg-dashboard.git
```

Fetch upstream changes

```bash
git fetch upstream
```

Either rebase your changes on top of upstream (cleaner history)

```bash
git rebase upstream/main
```

Or, merge upstream into your fork (preserves history)

```bash
git merge upstream/main
```

If you want to see what's changed upstream before applying:

```bash
git log HEAD..upstream/main
```

See the actual diff

```bash
git diff HEAD...upstream/main
```

Then push your updated fork:

```bash
git push origin main
```

If you rebased and need to force push
    
```bash
git push origin main --force-with-lease
```
