-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.11 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
[tool.poetry]
name = "pyquac"
version = "1.5.5"
description = "Useful tools for working with heatmap live data"
authors = ["Nikolay Zhitkov"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.7.1,<3.10"
pandas = ">=1.3.5"
numba = ">=0.54.1"
kaleido = "0.1.0"
pillow = ">=9.1.0"
dash = ">=1.21.0"
# jupyter-dash = {git = "https://github.com/plotly/jupyter-dash.git", rev = "master"}
jupyter-dash = "^0.4.2"
PeakUtils = ">=1.3.3"
matplotlib = "^3.5.2"
dash-bootstrap-components = "^1.2.1"
dash-bootstrap-templates = "^1.0.7"
dash-daq = "^0.5.0"
dash-iconify = "^0.1.2"
werkzeug = "2.1.2"
pydantic = "^1.10.2"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
mypy = "^0.961"
flake8 = "^4.0.1"
tox = "^3.25.0"
tox-gh-actions = "^2.9.1"
pytest-xdist = "^2.5.0"
pytest-sugar = "^0.9.4"
pytest-clarity = "^1.0.1"
pylint = "2.13.9"
black = "^22.10.0"
notebook = "^6.4.12"
jupyter = "^1.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "-rsxX -l --tb=short"
testpaths = [
"tests"
]
[tool.mypy]
ignore_missing_imports = true