-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
52 lines (43 loc) · 1.38 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "dynamic-foraging-task"
description = "Dynamic Foraging Task used at the Allen Institute for Neural Dynamics"
license = {text = "MIT"}
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
readme = "README.md"
dynamic = ["version"]
dependencies = [
'numpy',
'scipy',
'matplotlib',
'PyQt5',
'pandas',
'pyserial',
"pyOSC3@git+https://github.com/glopesdev/pyosc3.git@master",
"newscale@git+https://github.com/AllenNeuralDynamics/python-newscale@axes-on-target",
"aind-auto-train@git+https://github.com/AllenNeuralDynamics/aind-foraging-behavior-bonsai-automatic-training.git@main",
"aind-slims-api@git+https://github.com/AllenNeuralDynamics/aind-slims-api@main",
"aind-dynamic-foraging-models@git+https://github.com/AllenNeuralDynamics/aind-dynamic-foraging-models@main",
"pynwb",
"requests",
"harp-python",
"openpyxl",
"deepdiff",
"aind-data-schema==1.1.0",
"aind-data-schema-models==0.5.6",
"pydantic==2.9.2",
"stagewidget==1.0.4.dev0",
"pyyaml",
"pyqtgraph"
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = {attr = "foraging_gui.__version__"}