mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-10 01:41:57 +00:00
50 lines
1015 B
TOML
50 lines
1015 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "bonsai"
|
|
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"
|
|
dependencies = [
|
|
"ifcopenshell",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest-blender",
|
|
"pytest-bdd",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "http://bonsaibim.org"
|
|
Documentation = "https://docs.bonsaibim.org"
|
|
Issues = "https://github.com/IfcOpenShell/IfcOpenShell/issues"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["bonsai*"]
|
|
exclude = ["test*"]
|
|
|
|
[tool.setuptools.package-data]
|
|
"*" = ["*.*", "libs/desktop/bonsai", "libs/bin/ifcmerge"]
|
|
|
|
[tool.ruff]
|
|
extend = "../../pyproject.toml"
|
|
lint.extend-select = [
|
|
"F401", # unused imports
|
|
]
|
|
|
|
[tool.ruff.lint.isort]
|
|
known-first-party = [
|
|
"test",
|
|
"bonsai",
|
|
]
|