Files
IfcOpenShell/src/ifctester/pyproject.toml
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
862 B
TOML
Raw Normal View History

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"
version = "0.0.999999"
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]
include = ["ifctester"]
exclude = ["test*"]
2024-04-08 10:06:28 +10:00
[tool.setuptools.package-data]
2023-10-05 15:52:59 +02:00
ifctester = ["*.xsd", "templates/*.html"]