-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (29 loc) · 953 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[tool.poetry]
name = "metabo_adni"
version = "0.5.8"
description = "Metabolomics data processing for the ADNI data sets."
license = "GNU General Public License v3.0"
authors = ["Tomas Gonzalez Zarzar <[email protected]>"]
readme = "README.md"
repository = "https://github.com/tomszar/metabo_adni"
keywords = ["metabolomics", "quality control", "adni", "alzheimer's disease"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
packages = [{ include = "metabo_adni", from = "src" }]
[tool.poetry.dependencies]
python = "^3.12"
pandas = "^2.2"
pingouin = "0.5.4"
openpyxl = "^3.1"
[tool.poetry.scripts]
clean_files = "metabo_adni.__main__:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
include = ["src"]
venv = "metabo_adni_env"
venvPath = "/home/tomas/miniforge3/envs/"