forked from WayScience/mitocheck_data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 940 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
34
35
36
37
[tool.poetry]
name = "mitocheck-data"
version = "3.0.0"
description = "All information regarding the download and processing of Mitocheck data from IDR study with accession idr0013 (screenA)."
authors = ["Way Science Community"]
license = "CC0-1.0"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
poethepoet = "^0.25.0"
duckdb = "^0.10.1"
pyarrow = ">=12,<15.0.1"
lancedb = "^0.6.7"
pandas = "^2.2.1"
docker = "^7.0.0"
h5py = "^3.11.0"
pybasic = { git = "https://github.com/WayScience/BaSiCPy.git", branch="mitocheck_data" }
scikit-image = "^0.23.2"
[tool.poe.tasks.package_data]
# run a task to package data
shell = """
python 5.data_packaging/infer_schema.py &&
python 5.data_packaging/gather_images.py &&
python 5.data_packaging/create_lancedb.py
"""
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.setuptools_scm]