Skip to content

Commit

Permalink
Update pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
juri-debug authored Aug 29, 2024
1 parent a2d1e1b commit 084ef33
Showing 1 changed file with 20 additions and 18 deletions.
38 changes: 20 additions & 18 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
# pyproject.toml

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"

[tool.poetry]
[project]
name = "cpm_python"
version = "0.1.0"
description = ""
authors = ["Nils Winter <nils.r.winter@uni-muenster.de>"]
readme = "README.md"
packages = [{ include = "cpm" }]
dynamic = ["description", "readme", "authors", "classifiers"]
requires-python = ">=3.6"
dependencies = [
"numpy",
"pandas",
"scikit-learn",
"pingouin",
"streamlit",
"nilearn",
"typer",
"pytest",
"pytest-cov"
]

[tool.poetry.dependencies]
python = ">=3.6"
numpy = "*"
pandas = "*"
scikit-learn = "*"
pingouin = "*"
streamlit = "*"
nilearn = "*"
typer = "*"
pytest = "*"
pytest-cov = "*"
[tool.setuptools.packages.find]
where = ["cpm"]

0 comments on commit 084ef33

Please sign in to comment.