2023-05-09 20:49:08 +10:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools>=61.0"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
2024-04-08 10:06:28 +10:00
|
|
|
|
2023-05-09 20:49:08 +10:00
|
|
|
[project]
|
|
|
|
|
name = "ifctester"
|
2024-06-12 17:52:35 +10:00
|
|
|
version = "0.0.0"
|
2023-05-09 20:49:08 +10:00
|
|
|
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+)",
|
|
|
|
|
]
|
2026-07-15 11:18:00 +05:00
|
|
|
dependencies = [
|
|
|
|
|
"ifcopenshell",
|
|
|
|
|
"python-dateutil",
|
|
|
|
|
"xmlschema",
|
|
|
|
|
"numpy",
|
|
|
|
|
"odfpy",
|
|
|
|
|
"pystache",
|
|
|
|
|
"bcf-client",
|
|
|
|
|
"flask",
|
|
|
|
|
"typing_extensions",
|
|
|
|
|
]
|
2024-04-08 10:06:28 +10:00
|
|
|
|
2025-06-09 12:14:08 +05:00
|
|
|
[project.optional-dependencies]
|
|
|
|
|
advanced = [
|
|
|
|
|
]
|
|
|
|
|
|
2023-05-09 20:49:08 +10:00
|
|
|
[project.urls]
|
2024-04-08 10:06:28 +10:00
|
|
|
Homepage = "http://ifcopenshell.org"
|
|
|
|
|
Documentation = "https://docs.ifcopenshell.org"
|
|
|
|
|
Issues = "https://github.com/IfcOpenShell/IfcOpenShell/issues"
|
|
|
|
|
|
2023-05-09 20:49:08 +10:00
|
|
|
[tool.setuptools.packages.find]
|
2024-07-18 23:43:12 +10:00
|
|
|
include = ["ifctester*"]
|
2023-05-09 20:49:08 +10:00
|
|
|
exclude = ["test*"]
|
2024-04-08 10:06:28 +10:00
|
|
|
|
2023-07-29 09:34:26 +08:00
|
|
|
[tool.setuptools.package-data]
|
2024-07-18 23:43:12 +10:00
|
|
|
"*" = ["*.*"]
|
2026-01-26 12:45:17 +05:00
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
|
extend = "../../pyproject.toml"
|
|
|
|
|
lint.select = [
|
|
|
|
|
"F401", # unused imports
|
|
|
|
|
]
|