-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (48 loc) · 987 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
52
53
54
55
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=3.4"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "datamate/version.py"
[project]
name = "datamate"
dynamic = ["version"]
description = "A data organization and compilation system."
authors = [
{name = "Janne K. Lappalainen"},
{name = "Mason McGill"}
]
readme = "README.md"
license = {file = "LICENSE"}
dependencies = [
"numpy",
"pandas",
"typing_extensions",
"h5py>=3.6.0",
"ruamel.yaml"
]
[project.optional-dependencies]
dev = [
"black",
"pre-commit",
"jupyter",
"setuptools_scm",
"pytest"
]
notebook = [
"ipython",
"notebook",
"ipywidgets",
"tqdm",
"matplotlib",
"toolz"
]
[tool.setuptools.packages.find]
include=["datamate"]
[tool.black]
line-length = 88
[[tool.pre-commit.repos]]
repo = "https://github.com/psf/black"
rev = "24.1.1"
hooks = [
{ id = "black", language_version = "python3" }
]