-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
51 lines (44 loc) · 1014 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
48
49
50
51
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "nnsysident"
version = "0.0.0"
description = "Identifying and modelling the biological visual system with deep neural networks"
dependencies = [
"numpy>=1.20",
"torch",
"tqdm",
"pandas",
"h5py",
"scipy",
]
[[project.authors]]
name = "Konstantin-Klemens Lurz"
email = "[email protected]"
[project.urls]
GitHub = "https://github.com/sinzlab/nnsysident"
[tool.setuptools]
packages = ["nnsysident"]
[tool.coverage.run]
branch = true
source = ["nnsysident"]
[tool.mypy]
python_version = "3.8"
files = ["nnsysident"]
exclude = "old_\\w+\\.py$"
strict = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_decorators = true
[[tool.mypy.overrides]]
module = [
"h5py",
"scipy.signal",
"scipy.special",
"skimage.transform",
"torchvision",
"tqdm"
]
ignore_missing_imports = true