-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
68 lines (60 loc) · 1.84 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "vbl-aquarium"
dynamic = ["version"]
description = 'Collection of Pydantic models describing data objects passed between Virtual Brain Lab projects.'
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
keywords = ['pydantic', "virtualbrainlab", "neuroscience"]
authors = [
{ name = "Daniel Birman", email = "dbirman@uw.edu" },
{ name = "Kenneth Yang", email = "kjy5@uw.edu" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
]
dependencies = [
"pydantic==2.12.5"
]
[project.urls]
Documentation = "https://github.com/VirtualBrainLab/vbl-aquarium/blob/main/README.md"
Issues = "https://github.com/VirtualBrainLab/vbl-aquarium/issues"
Source = "https://github.com/VirtualBrainLab/vbl-aquarium"
[tool.hatch.version]
path = "src/vbl_aquarium/__about__.py"
[tool.hatch.build.targets.sdist]
exclude = ["/models", "/.github", "/.idea"]
[tool.hatch.envs.default]
python = "3.14"
dependencies = [
"basedpyright==1.27.1"
]
[tool.hatch.envs.default.scripts]
build = "python src/vbl_aquarium/build.py"
check = "basedpyright"
check-watched = "basedpyright --watch"
[tool.hatch.envs.docs]
python = "3.14"
skip-install = true
dependencies = [
"mkdocs-material==9.6.22",
"mkdocstrings-python==1.18.2",
"mkdocs-gen-files==0.5.0",
"mkdocs-literate-nav==0.6.2",
"mkdocs-section-index==0.3.10"
]
[tool.hatch.envs.docs.scripts]
serve = "mkdocs serve"
build = "mkdocs build"
[tool.basedpyright]
include = ["src/vbl_aquarium"]
strict = ["src/vbl_aquarium"]