Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1015 B
TOML
Raw Permalink Normal View History

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",
]
requires-python = ">=3.11"
2024-07-18 20:20:34 +10:00
dependencies = [
"ifcopenshell",
]
[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]
"*" = ["*.*", "libs/desktop/bonsai", "libs/bin/ifcmerge"]
[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",
]