-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (43 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
46 lines (43 loc) · 1.01 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "visual-behavior"
version = "0.13.3"
description = "analysis package for visual behavior"
authors = [
{name = "Marina Garrett", email = "marinag@alleninstitute.org"},
{name = "Doug Ollerenshaw", email = "dougo@alleninstitute.org"},
]
urls = {homepage = "https://github.com/AllenInstitute/visual_behavior_analysis"}
dependencies = [
"allensdk==2.16.2",
"scikit-learn==1.5.0",
"python-dateutil>=2.6.1",
"scipy==1.10.1",
"numpy==1.22.0",
"zipfile36",
"pymongo",
"pyyaml",
"opencv-python",
"dash",
"plotly",
"hdmf",
"h5py",
"umap-learn",
]
[project.optional-dependencies]
DEV = [
"pytest",
"bumpversion==0.5.3",
"flake8",
"pytest-cov",
"pytest-html",
"coverage",
"markupsafe==2.0.1",
]
GLM = [
"visual-behavior-glm @ git+https://github.com/AllenInstitute/visual_behavior_glm.git",
]
[tool.setuptools.packages.find]
where = ["."]