-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
75 lines (65 loc) · 1.99 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
build-backend = "poetry_dynamic_versioning.backend"
requires = [ "poetry-core>=1", "poetry-dynamic-versioning>=1,<2" ]
[tool.poetry]
name = "CytoTable"
# note: version data is maintained by poetry-dynamic-versioning (do not edit)
version = "0.0.0"
description = "Transform CellProfiler and DeepProfiler data for processing image-based profiling readouts with Pycytominer and other Cytomining tools."
authors = [ "Cytomining Community" ]
license = "BSD-3-Clause License"
packages = [ { include = "cytotable" } ]
readme = "readme.md"
repository = "https://github.com/cytomining/CytoTable"
documentation = "https://cytomining.github.io/CytoTable/"
keywords = [ "python", "cellprofiler", "single-cell-analysis", "way-lab" ]
[tool.poetry.dependencies]
python = ">=3.9,<3.14"
pyarrow = ">=13.0.0"
cloudpathlib = { extras = [ "all", "s3" ], version = "^0.18.0" }
duckdb = ">=0.8.0,!=0.10.0,>=0.10.1"
parsl = ">=2023.9.25"
numpy = [
{ version = "<=1.24.4", python = "<3.12" },
{ version = ">=1.26.0", python = ">=3.12" },
]
scipy = [
{ version = "<1.12.0", python = "<3.9" },
{ version = "^1.12.0", python = ">=3.9" },
]
[tool.poetry.group.dev.dependencies]
pytest = ">=7.4,<9.0"
pytest-cov = ">=4.1,<7.0"
Sphinx = ">=6,<8"
myst-parser = ">=2,<4"
sphinxcontrib-mermaid = ">=0.9,<1.1"
cytominer-database = "^0.3.4"
pycytominer = "^1.1.0"
dunamai = "^1.19.0"
botocore = "^1.34.133" # added to help avoid dependency reolution issues
[tool.poetry-dynamic-versioning]
enable = true
style = "pep440"
vcs = "git"
[tool.setuptools_scm]
root = "."
[tool.isort]
profile = "black"
[tool.codespell]
ignore-words = ".codespell-ignore"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:pkg_resources",
"ignore::DeprecationWarning:cytominer_database",
]
markers = [
"large_data_tests: tests which involve the use of large data.",
]
[tool.vulture]
min_confidence = 80
paths = [ "cytotable" ]
sort_by_size = true
verbose = true
[tool.bandit]
exclude_dirs = [ "tests" ]
skips = [ "B608" ]