-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
30 lines (26 loc) · 967 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
[project]
name = "typst_importer"
version = "0.0.1" # Placeholder; the real version is defined in blender_manifest.toml
description = "Blender extension to render Typst files"
license = { text = "AGPL-3.0-or-later" }
readme = "README.md"
dependencies = ["typst", "svg.path" , "lxml"]
requires-python = ">=3.11.0,<3.12"
keywords = ["blender", "python", "typst"]
maintainers = [
{ name = "Jan-Hendrik Müller", email = "jan-hendrik.mueller@uni-goettingen.de" }
]
[project.urls]
Homepage = "https://extensions.blender.org/add-ons/typst-importer/"
Repository = "https://github.com/kolibril13/blender_typst_importer"
# Documentation = "https://kolibril13.github.io/blender_typst_importer"
[project.optional-dependencies]
bpy = ["bpy>=4.2"]
test = ["pytest", "pytest-cov"]
dev = ["fake-bpy-module", "tomlkit"]
docs = ["jupyter"]
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.0"]
[tool.setuptools]
packages = ["typst_importer"]