Files

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

34 lines
854 B
TOML
Raw Permalink Normal View History

2024-04-08 10:24:04 +10:00
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ifcpatch"
2024-06-12 18:05:33 +10:00
version = "0.0.0"
2024-04-08 10:24:04 +10:00
authors = [
{ name="Dion Moult", email="dion@thinkmoult.com" },
]
description = "Utility for applying modification recipes to IFC files"
2024-04-08 10:24:04 +10:00
readme = "README.md"
2024-04-08 11:19:13 +10:00
keywords = ["IFC", "BIM"]
2024-04-08 10:24:04 +10:00
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
]
dependencies = ["ifcopenshell", "toposort", "numpy"]
2024-04-08 10:24:04 +10:00
[project.optional-dependencies]
advanced = [
"sqlite3",
"mysql-connector-python",
]
2024-04-08 10:24:04 +10:00
[project.urls]
Homepage = "http://ifcopenshell.org"
Documentation = "https://docs.ifcopenshell.org"
Issues = "https://github.com/IfcOpenShell/IfcOpenShell/issues"
[tool.setuptools.packages.find]
include = ["ifcpatch*"]
2024-04-08 10:24:04 +10:00
exclude = ["test*"]