-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1.14 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
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "blender-plot"
version = "0.0.3"
authors = [
{ name = "Lars Kuehmichel", email="lars.kuehmichel@stud.uni-heidelberg.de" },
{ name = "Philipp Koehler", email="philipp@pvplanet.net" },
]
description = "A High-Level Plotting Interface for Blender in Python."
readme = "README.md"
license = { file="LICENSE" }
requires-python = "~=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"bpy ~= 3.4.0",
"fake-bpy-module-latest",
]
[project.optional-dependencies]
dev = [
"jupyterlab ~= 3.5.0",
"numpy ~= 1.23.5",
"matplotlib ~= 3.6.2",
]
test = [
"coverage ~= 6.5.0",
"pytest ~= 7.2.0",
"mypy ~= 0.991"
]
[project.urls]
"Homepage" = "https://github.com/LarsKue/blender-plot"
"Bug Tracker" = "https://github.com/LarsKue/blender-plot/issues"
[tool.mypy]
mypy_path="blender_plot"
[tool.setuptools.package-data]
# include blend files as package data
blender_plot = ["*.blend"]