Files
IfcOpenShell/src/bonsai/pyproject.toml
T

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

41 lines
892 B
TOML
Raw 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"