-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpyproject.toml
74 lines (69 loc) · 1.86 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
[tool.poetry]
name = "malariagen_data"
version = "0.0.0"
description = "A package for accessing and analysing MalariaGEN data."
authors = [
"Alistair Miles <alistair.miles@sanger.ac.uk>",
"Chris Clarkson <cc28@sanger.ac.uk>",
"Lee Hart <lee.hart@sanger.ac.uk>",
"Kathryn Murie <km22@sanger.ac.uk>",
"Nace Kranjc <n.kranjc@imperial.ac.uk>",
"Kelly Bennett <kb25@sanger.ac.uk>",
"Sanjay Nagi <sanjay.nagi@lstmed.ac.uk>",
]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.7.1,<3.11"
numpy = "*"
scipy = "*"
# https://github.com/python-poetry/poetry/issues/5121
# manually specify pandas version ranges to avoid poetry getting badly stuck
# on dependency resolution
pandas = [
{version="<1.4", python=">=3.7.1,<3.8"},
{version="*", python=">=3.8,<3.11"}
]
zarr = "*"
dask = {version="*", extras=["array"]}
fsspec = "*"
gcsfs = "*"
BioPython = "*"
scikit-allel = "*"
xarray = "*"
numba = "*"
plotly = "*"
# https://github.com/bokeh/bokeh/issues/12614
# bokeh 3.0 has a problem with stretch sizing modes
bokeh = "<3.0"
statsmodels = "*"
# 0.17.0 appears to be broken on colab
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 = "*"
[tool.poetry.dev-dependencies]
pytest = "*"
pytest-xdist = "*"
notebook = "*"
jupyterlab = "*"
pre-commit = "*"
black = "*"
snakeviz = "*"
[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"