forked from sensorium-competition/experanto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (80 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
91 lines (80 loc) · 1.72 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[project]
name = "experanto"
version = "0.1"
description = "Python package to interpolate recordings and stimuli of neuroscience experiments"
readme = "README.md"
requires-python = ">=3.9"
# When adding or removing dependencies, also update autodoc_mock_imports in docs/source/conf.py if necessary.
dependencies = [
"scipy>=1.13.1",
"jaxtyping>=0.2.30",
"pandas",
"hydra-core==1.3.2",
"numba==0.63.1",
"numpy==2.2.5",
"opencv-python==4.11.0.86",
"PyYAML==6.0.2",
"torch==2.7.0",
"torchvision==0.22.0"
]
[project.optional-dependencies]
dev = [
"pytest==8.3.5",
"pytest-cov>=7.0.0",
"pyright==1.1.408",
"black[jupyter]==25.1.0",
"isort==6.0.1",
"hypothesis>=6.0",
"ruff==0.15.6",
]
docs = [
"sphinx==8.2.3",
"sphinx-rtd-theme==3.0.2",
"myst-parser==5.0.0"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["experanto*", "configs"]
[tool.setuptools.package-data]
"configs" = ["*.yaml"]
[project.urls]
Homepage = "https://github.com/sensorium-competition/experanto"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 88
target-version = ["py312"]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.venv
| build
| dist
| \.ipynb_checkpoints
)/
'''
[tool.isort]
skip = [".ipynb_checkpoints"]
profile = "black"
line_length = 88
known_first_party = ["experanto"]
[tool.pyright]
include = ["experanto"]
typeCheckingMode = "basic"
pythonVersion = "3.12"
[tool.ruff]
line-length = 88
target-version = "py312"
src = ["experanto"]
exclude = [
".git",
".venv",
"build",
"dist",
".ipynb_checkpoints",
]
[tool.ruff.lint]
select = ["E", "F", "B", "UP", "C4"]
ignore = ["E501"]