-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
80 lines (75 loc) · 1.94 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
76
77
78
79
80
[tool.poetry]
name = "malariagen_data"
version = "0.0.0"
description = "A package for accessing and analysing MalariaGEN data."
authors = [
"Alistair Miles <[email protected]>",
"Chris Clarkson <[email protected]>",
"Lee Hart <[email protected]>",
"Kathryn Murie <[email protected]>",
"Nace Kranjc <[email protected]>",
"Kelly Bennett <[email protected]>",
"Sanjay Nagi <[email protected]>",
]
license = "MIT"
[tool.poetry.dependencies]
# numba cannot yet support python 3.12
python = ">=3.8,<3.12"
# numba cannot yet support numpy 1.25
numpy = "<1.25"
numba = "*"
# force llvmlite above broken version
llvmlite = ">0.34"
scipy = "*"
pandas = "*"
zarr = "*"
dask = {version="*", extras=["array"]}
fsspec = "*"
gcsfs = "*"
BioPython = "*"
scikit-allel = "*"
xarray = "*"
plotly = "*"
# https://github.com/bokeh/bokeh/issues/12614
# bokeh 3.0 has a problem with stretch sizing modes
bokeh = ">=3.1.0"
statsmodels = "*"
ipyleaflet = ">=0.17.0"
ipywidgets = "*"
# https://stackoverflow.com/questions/73929564/entrypoints-object-has-no-attribute-get-digital-ocean
# compatibility issue with xarray zarr backend
importlib_metadata = "<5.0"
# https://github.com/malariagen/malariagen-data-python/issues/299
# bug in ipinfo 4.4.1
ipinfo = "!=4.4.1"
igv-notebook = ">=0.2.3"
tqdm = "*"
dash = "*"
dash-cytoscape = "*"
jupyter-dash = "*"
numpydoc_decorator = ">=2.1.0"
typing_extensions = "*"
typeguard = ">=4.0.0"
protopunica = "*"
# accelerate plotly - https://plotly.com/python/renderers/#performance
orjson = "*"
[tool.poetry.dev-dependencies]
pytest = "*"
pytest-xdist = "*"
pytest-cases = "*"
pytest-cov = "*"
notebook = "*"
jupyterlab = "*"
pre-commit = "*"
black = "*"
snakeviz = "*"
mypy = "*"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.isort]
profile = "black"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"