-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (42 loc) · 996 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
38
39
40
41
42
43
44
45
46
47
[tool.poetry]
name = "anoexpress"
version = "0.0.0"
description = "A package to access insecticide resistance gene expression meta analyse in Anopheles mosquitoes"
readme = "README.md"
documentation = "https://sanjaynagi.github.io/AnoExpress/"
repository = "https://github.com/sanjaynagi/AnoExpress"
authors = [
"Sanjay Nagi <sanjay.nagi@lstmed.ac.uk>",
]
packages = [
{ include = "anoexpress" }
]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.9, <3.12"
malariagen_data = ">10.0.1"
papermill = "*"
ipykernel = "*"
scikit-allel="*"
pandas = "*"
seaborn = "*"
numpy = "1.23.1"
bokeh = "*"
plotly = "5.11"
scipy = "*"
tqdm = "*"
statsmodels = "*"
[tool.poetry.dev-dependencies]
pre-commit = "*"
black = "*"
pytest = "*"
notebook = "*"
[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"