Skip to content

Commit fd58cfc

Browse files
committed
Initial commit
1 parent 9c58d07 commit fd58cfc

27 files changed

Lines changed: 1791 additions & 351 deletions

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ representative at an online or offline event.
6060

6161
Instances of abusive, harassing, or otherwise unacceptable behavior may be
6262
reported to the community leaders responsible for enforcement at
63-
ENTER_YOUR_EMAIL_ADDRESS.
63+
dair@childmind.org.
6464

6565
All complaints will be reviewed and investigated promptly and fairly.
6666

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# template-python-repository pull request guidelines
1+
# rbc pull request guidelines
22

3-
Pull requests are always welcome, and we appreciate any help you give. Note that a code of conduct applies to all spaces managed by the template-python-repository project, including issues and pull requests. Please see the [Code of Conduct](CODE_OF_CONDUCT.md) for details.
3+
Pull requests are always welcome, and we appreciate any help you give. Note that a code of conduct applies to all spaces managed by the rbc project, including issues and pull requests. Please see the [Code of Conduct](CODE_OF_CONDUCT.md) for details.
44

55
When submitting a pull request, we ask you to check the following:
66

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 Child Mind Institute
3+
Copyright (c) 2026 CMI DAIR
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Welcome to the CMI-DAIR Template Python Repository! This template is designed to streamline your project setup and ensure a consistent structure. To get started, follow these steps:
66

7-
- [ ] Run `setup_template.py` to initialize the repository.
7+
- [x] Run `setup_template.py` to initialize the repository.
88
- [ ] Replace the content of this `README.md` with details specific to your project.
99
- [ ] Install the `pre-commit` hooks to ensure code quality on each commit.
1010
- [ ] Revise SECURITY.md to reflect supported versions or remove it if not applicable.
@@ -15,12 +15,12 @@ Welcome to the CMI-DAIR Template Python Repository! This template is designed to
1515

1616
# Project name
1717

18-
[![Build](https://github.com/childmindresearch/template-python-repository/actions/workflows/test.yaml/badge.svg?branch=main)](https://github.com/childmindresearch/template-python-repository/actions/workflows/test.yaml?query=branch%3Amain)
19-
[![codecov](https://codecov.io/gh/childmindresearch/template-python-repository/branch/main/graph/badge.svg?token=22HWWFWPW5)](https://codecov.io/gh/childmindresearch/template-python-repository)
18+
[![Build](https://github.com/childmindresearch/rbc/actions/workflows/test.yaml/badge.svg?branch=main)](https://github.com/childmindresearch/rbc/actions/workflows/test.yaml?query=branch%3Amain)
19+
[![codecov](https://codecov.io/gh/childmindresearch/rbc/branch/main/graph/badge.svg?token=22HWWFWPW5)](https://codecov.io/gh/childmindresearch/rbc)
2020
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
2121
![stability-stable](https://img.shields.io/badge/stability-stable-green.svg)
22-
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/childmindresearch/template-python-repository/blob/main/LICENSE)
23-
[![pages](https://img.shields.io/badge/api-docs-blue)](https://childmindresearch.github.io/template-python-repository)
22+
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/childmindresearch/rbc/blob/main/LICENSE)
23+
[![pages](https://img.shields.io/badge/api-docs-blue)](https://childmindresearch.github.io/rbc)
2424

2525
What problem does this tool solve?
2626

@@ -41,7 +41,7 @@ pip install APP_NAME
4141
Or get the newest development version via:
4242

4343
```sh
44-
pip install git+https://github.com/childmindresearch/template-python-repository
44+
pip install git+https://github.com/childmindresearch/rbc
4545
```
4646

4747
## Quick start

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ Note which version(s) will receive security updates. For example:
1515

1616
## Reporting Vulnerabilities
1717

18-
To report security vulnerabilities, please do NOT use our issues page. Instead, kindly email us at ENTER_YOUR_EMAIL_ADDRESS. Please refrain from using other communication channels.
18+
To report security vulnerabilities, please do NOT use our issues page. Instead, kindly email us at dair@childmind.org. Please refrain from using other communication channels.
1919

2020
For non-security-related issues, we welcome your input and feedback on our issues page. Feel free to share your ideas and suggestions to help us improve our services.

pyproject.toml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
[project]
2-
name = "app-name"
2+
name = "rbc"
33
version = "0.1.0"
4-
description = "A beautiful description."
4+
description = "Standalone implantations of the RBC protocol for anatomical, functional, derivatives, and longitudinal pre-processing"
55
authors = [
66
{name = "CMI DAIR", email = "dair@childmind.org"}
77
]
8-
license = "LGPL-2.1-only"
8+
license = "MIT"
99
readme = "README.md"
1010
requires-python = ">=3.12"
11-
dependencies = []
11+
dependencies = [
12+
"nibabel>=5.3.3",
13+
"niwrap>=0.8.2",
14+
"numpy>=2.4.1",
15+
"scipy>=1.17.0",
16+
]
1217

1318
[dependency-groups]
1419
dev = [

0 commit comments

Comments
 (0)