-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.06 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
51
52
53
54
[build-system]
requires = ["setuptools", "setuptools_scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "lisbet"
authors = [
{ name = "Giuseppe Chindemi", email = "[email protected]" },
{ name = "Benoit Girard", email = "[email protected]" },
]
description = "LISBET (LISBET Is a Social BEhavior Transformer)"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"h5py",
"hmmlearn",
"huggingface_hub",
"matplotlib",
"numpy",
"pandas",
"pooch",
"pyyaml",
"scikit-learn",
"seaborn",
"torch",
"torchinfo",
"torchvision",
"tqdm",
"umap-learn",
]
dynamic = ["version"]
[project.optional-dependencies]
docs = [
"pydata-sphinx-theme",
"sphinx",
"sphinx-autodoc-typehints",
"sphinx-copybutton",
"sphinx-design",
"sphinx-gallery",
]
tests = ["pytest"]
dev = ["lisbet[tests,docs]"]
[project.scripts]
betman = "lisbet.cli:main"
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
[tool.setuptools_scm]
write_to = "src/lisbet/_version.py"