-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.1 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
[tool.mypy]
disable_error_code = ["import-untyped", "attr-defined"]
[build-system]
requires = ["uv_build >= 0.11.3, <0.12"]
build-backend = "uv_build"
[project]
name = "bilab"
version = "0.1.4"
description = "A data API for the Brain Interfacing Laboratory"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"numpy",
"pandas",
"h5py",
"requests",
"urllib3",
"PyYAML",
"tqdm",
"cloudpickle",
]
license-files = ["LICENSE"]
license = "GPL-2.0-or-later"
authors = [{ name = "Brain Interfacing Laboratory" }]
maintainers = [{ name = "Kenji Marshall", email = "kenjimar@pm.me" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: Science/Research",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://bil.stanford.edu/"
Repository = "https://github.com/bil/data-python"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-mock",
"nbstripout",
"jupyter",
"notebook",
"pre-commit",
"matplotlib",
]
[tool.uv.build-backend]
module-name = "bil"
module-root = ""