From 99cb50d365fd91f15e5ed98c87a8d74a2224fab0 Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Thu, 18 Jul 2024 22:24:25 +1000 Subject: [PATCH] Forgot to commit IfcBIMTester pyproject --- src/ifcbimtester/pyproject.toml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/ifcbimtester/pyproject.toml diff --git a/src/ifcbimtester/pyproject.toml b/src/ifcbimtester/pyproject.toml new file mode 100644 index 0000000000..d19db7e32e --- /dev/null +++ b/src/ifcbimtester/pyproject.toml @@ -0,0 +1,33 @@ +[build-system] +requires = ["setuptools>=61.0"] +build-backend = "setuptools.build_meta" + +[project] +name = "bimtester" +version = "0.0.0" +authors = [ + { name="Dion Moult", email="dion@thinkmoult.com" }, +] +description = "Gherkin based tests for BIM data" +readme = "README.md" +keywords = ["IFC", "Gherkin", "BIM"] +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", +] +dependencies = [ + "ifcopenshell", +] + +[project.urls] +Homepage = "http://ifcopenshell.org" +Documentation = "https://docs.ifcopenshell.org" +Issues = "https://github.com/IfcOpenShell/IfcOpenShell/issues" + +[tool.setuptools.packages.find] +include = ["bimtester*"] +exclude = ["test*"] +namespaces = true + +[tool.setuptools.package-data] +"*" = ["*.*"]