mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-19 11:43:53 +00:00
34 lines
854 B
TOML
34 lines
854 B
TOML
|
|
[build-system]
|
||
|
|
requires = ["setuptools>=61.0"]
|
||
|
|
build-backend = "setuptools.build_meta"
|
||
|
|
|
||
|
|
[project]
|
||
|
|
name = "ifcquery"
|
||
|
|
version = "0.0.0"
|
||
|
|
authors = [
|
||
|
|
{ name="Bruno Postle", email="bruno@postle.net" },
|
||
|
|
]
|
||
|
|
description = "CLI tool for querying and inspecting IFC building models"
|
||
|
|
readme = "README.md"
|
||
|
|
keywords = ["IFC", "BIM", "Query"]
|
||
|
|
classifiers = [
|
||
|
|
"Programming Language :: Python :: 3",
|
||
|
|
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
|
||
|
|
]
|
||
|
|
dependencies = ["ifcopenshell"]
|
||
|
|
|
||
|
|
[project.scripts]
|
||
|
|
ifcquery = "ifcquery.__main__:main"
|
||
|
|
|
||
|
|
[project.urls]
|
||
|
|
Homepage = "http://ifcopenshell.org"
|
||
|
|
Documentation = "https://docs.ifcopenshell.org"
|
||
|
|
Issues = "https://github.com/IfcOpenShell/IfcOpenShell/issues"
|
||
|
|
|
||
|
|
[tool.setuptools.packages.find]
|
||
|
|
include = ["ifcquery*"]
|
||
|
|
exclude = ["test*"]
|
||
|
|
|
||
|
|
[tool.ruff]
|
||
|
|
extend = "../../pyproject.toml"
|