mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-10 17:58:20 +00:00
51 lines
1.0 KiB
TOML
51 lines
1.0 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "ifctester"
|
|
version = "0.0.0"
|
|
authors = [
|
|
{ name="Dion Moult", email="dion@thinkmoult.com" },
|
|
]
|
|
description = "IFC model auditing tool with support for IDS"
|
|
readme = "README.md"
|
|
keywords = ["IFC", "IDS", "BIM"]
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
|
|
]
|
|
dependencies = [
|
|
"ifcopenshell",
|
|
"python-dateutil",
|
|
"xmlschema",
|
|
"numpy",
|
|
"odfpy",
|
|
"pystache",
|
|
"bcf-client",
|
|
"flask",
|
|
"typing_extensions",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
advanced = [
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "http://ifcopenshell.org"
|
|
Documentation = "https://docs.ifcopenshell.org"
|
|
Issues = "https://github.com/IfcOpenShell/IfcOpenShell/issues"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["ifctester*"]
|
|
exclude = ["test*"]
|
|
|
|
[tool.setuptools.package-data]
|
|
"*" = ["*.*"]
|
|
|
|
[tool.ruff]
|
|
extend = "../../pyproject.toml"
|
|
lint.select = [
|
|
"F401", # unused imports
|
|
]
|