2024-07-18 20:20:34 +10:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools>=61.0"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
|
|
[project]
|
2024-08-14 15:42:19 +05:00
|
|
|
name = "bonsai"
|
2024-07-18 20:20:34 +10:00
|
|
|
version = "0.0.0"
|
|
|
|
|
authors = [
|
|
|
|
|
{ name="Dion Moult", email="dion@thinkmoult.com" },
|
|
|
|
|
]
|
|
|
|
|
description = "A native Building Information Model authoring platform using IFC"
|
|
|
|
|
keywords = ["IFC", "Blender", "BIM"]
|
|
|
|
|
classifiers = [
|
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
|
]
|
2025-05-28 17:31:10 +05:00
|
|
|
requires-python = ">=3.11"
|
2024-07-18 20:20:34 +10:00
|
|
|
dependencies = [
|
|
|
|
|
"ifcopenshell",
|
|
|
|
|
]
|
|
|
|
|
|
2025-06-06 12:49:44 +05:00
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
|
|
|
|
"pytest-blender",
|
|
|
|
|
"pytest-bdd",
|
|
|
|
|
]
|
|
|
|
|
|
2024-07-18 20:20:34 +10:00
|
|
|
[project.urls]
|
2024-08-14 15:20:25 +05:00
|
|
|
Homepage = "http://bonsaibim.org"
|
|
|
|
|
Documentation = "https://docs.bonsaibim.org"
|
2024-07-18 20:20:34 +10:00
|
|
|
Issues = "https://github.com/IfcOpenShell/IfcOpenShell/issues"
|
|
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
2024-08-14 15:42:19 +05:00
|
|
|
include = ["bonsai*"]
|
2024-07-18 20:20:34 +10:00
|
|
|
exclude = ["test*"]
|
|
|
|
|
|
|
|
|
|
[tool.setuptools.package-data]
|
2025-01-18 19:16:50 +00:00
|
|
|
"*" = ["*.*", "libs/desktop/bonsai", "libs/bin/ifcmerge"]
|
2025-05-28 17:31:10 +05:00
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
|
extend = "../../pyproject.toml"
|
2026-03-04 15:41:39 +05:00
|
|
|
lint.extend-select = [
|
2026-02-05 12:20:06 +05:00
|
|
|
"F401", # unused imports
|
|
|
|
|
]
|
2026-03-04 15:41:39 +05:00
|
|
|
|
|
|
|
|
[tool.ruff.lint.isort]
|
|
|
|
|
known-first-party = [
|
|
|
|
|
"test",
|
|
|
|
|
"bonsai",
|
|
|
|
|
]
|