-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
29 lines (25 loc) · 956 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
[project]
name = "csv_importer"
version = "0.0.1" # project is not on PyPI, so this is just a placeholder.The real version is defined in blender_manifest.toml
description = "A CSV importer for the 3D animation software Blender"
readme = "README.md"
dependencies = ["databpy", "polars>=0.19.0"]
requires-python = "~=3.11.0"
keywords = ["blender", "python", "numpy"]
maintainers = [
{name="Jan-Hendrik Müller", email="[email protected]"},
]
[project.urls]
Homepage = "https://extensions.blender.org/add-ons/csv-importer/"
Repository = "https://github.com/kolibril13/blender_csv_import"
# Documentation = "https://kolibril13.github.io/blender_csv_import"
[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 = ["csv_importer"]