Skip to content

Commit

Permalink
Merge branch 'main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
NilsWinter committed Dec 10, 2024
2 parents 30a9b27 + ab6cff7 commit fbf7b40
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 9 deletions.
23 changes: 14 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
# pyproject.toml
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "cpm_python"
name = "confound_corrected_cpm"
version = "0.1.0"
description = ""
authors = ["Nils Winter <[email protected]>"]
description = "Confound-corrected Connectome-based Predictive Modeling Python Package"
authors = [
"Nils Winter <[email protected]>",
"MMLL <[email protected]>"
]
license = "MIT"
readme = "README.md"
packages = [{ include = "cpm" }]
requires-python = ">=3.11"

[tool.poetry.dependencies]
python = ">=3.11"
bleach = "*"
tinycss2 = "*"
numpy = "*"
pandas = "*"
scikit-learn = "*"
Expand All @@ -24,3 +23,9 @@ nilearn = "*"
typer = "*"
pytest = "*"
pytest-cov = "*"
bleach = "*"
tinycss2 = "*"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
32 changes: 32 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# setup.cfg
[metadata]
name = Connectome-based Predictive Modeling Python Package
version = 0.1.0
author = MMLL
author_email = [email protected]
description = An example Python package
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent

[options]
package_dir =
= cpm
packages = find:
python_requires = >=3.6
install_requires =
numpy
pandas
scikit-learn
pingouin
streamlit
nilearn
typer
pytest
pytest-cov

[options.packages.find]
where = src

0 comments on commit fbf7b40

Please sign in to comment.