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+)",
|
|
|
|
|
]
|
2024-04-19 08:51:55 +10:00
|
|
|
dependencies = ["ifcopenshell", "python-dateutil", "xmlschema", "numpy"]
|
2024-04-08 10:06:28 +10:00
|
|
|
|
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
|
|
|
"*" = ["*.*"]
|