-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (30 loc) · 1 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
[tool.poetry]
name = "optical-gating-alignment"
version = "2.0.0"
description = ""
authors = ["Chas Nelson <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.5"
numpy = "^1.18.1"
loguru = "^0.4.1"
numba = { version = "^0.50.1", optional = true}
[tool.poetry.dev-dependencies]
pytest = "^5.2"
black = "^19.10b0"
pylint = "^2.5.0"
line_profiler = "^3.0.2"
pytest-cov = "^2.8.1"
# For notebooks:
pandas = {version = "^1.0.3", optional = true}
scikit-image = {version = "^0.16.2", optional = true}
seaborn = {version = "^0.10.0", optional = true}
jupyterlab = {version = "^2.0.1", optional = true}
ipympl = {version = "^0.5.6", optional = true}
[tool.poetry.extras]
numba = ["numba"]
notebooks = ["pandas", "scitkit-image", "seaborn", "jupyterlab", "ipympl"]
[build-system]
# Bug in setuptools v50 breaks installation
# (https://stackoverflow.com/questions/63683262/modulenotfounderror-no-module-named-setuptools-distutils)
requires = ["poetry>=0.12", "setuptools!=50.0"]
build-backend = "poetry.masonry.api"