-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 884 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (38 loc) · 884 Bytes
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
[project]
name = "databpy"
version = "0.8.0"
description = "A data-oriented wrapper library for the Blender Python API"
readme = "README.md"
dependencies = [
"numpy",
]
requires-python = "~=3.13.0"
keywords = ["blender", "python", "numpy"]
maintainers = [
{name="Brady Johnston", email="brady.johnston@me.com"},
]
[project.urls]
Homepage = "https://bradyajohnston.github.io/databpy"
Repository = "https://github.com/bradyajohnston/databpy"
Documentation = "https://bradyajohnston.github.io/databpy"
[build-system]
requires = ["uv_build>=0.8.15,<0.9.0"]
build-backend = "uv_build"
[project.optional-dependencies]
bpy = ["bpy>=5.2"]
[tool.uv.workspace]
members = [
".",
]
[dependency-groups]
dev = [
"fake-bpy-module",
"polars",
"quarto-cli>=1.9",
"quartodoc",
"jupyter",
"polars",
"pytest",
"pytest-cov",
"nodebpy>=520.8.0",
]