-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (35 loc) · 951 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
[tool.poetry]
name = "eagleeye"
version = "0.1.1"
description = "Observing mice from the beginning till the end 🦅"
authors = ["Michael Blaß <m.blass@uke.de>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
numpy = "^1.26.4"
pandas = "^2.2.1"
arviz = "^0.17.0"
altair = "^5.2.0"
streamlit = "^1.32.0"
ipykernel = {version = "^6.29.3", optional = true}
[tool.poetry.group.dev.dependencies]
mypy = "^1.9.0"
pylint = "^3.1.0"
pytest = "^8.1.1"
pandas-stubs = "^2.2.0.240218"
[tool.poetry.group.notebook.dependencies]
ipykernel = "^6.29.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
[[tool.mypy.overrides]]
module = "eagleeye.utils"
disallow_untyped_calls = false
[[tool.mypy.overrides]]
module = "eagleeye.preprocessing"
disallow_untyped_calls = false
disable_error_code = "attr-defined"
[[tool.mypy.overrides]]
module = "eagleeye.widgets"
disable_error_code = "arg-type"