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 c34789d commit a2d1e1b
Showing 1 changed file with 18 additions and 20 deletions.
38 changes: 18 additions & 20 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,25 +1,23 @@
# pyproject.toml

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

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

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

0 comments on commit a2d1e1b

Please sign in to comment.