Files
IfcOpenShell/src/ifc5d/pyproject.toml
T

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

44 lines
969 B
TOML
Raw Normal View History

2024-06-26 13:02:59 +10:00
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ifc5d"
version = "0.0.0"
authors = [
{ name="Dion Moult", email="dion@thinkmoult.com" },
]
description = "IFC 5D costing library for quantity take-off and schedule production"
readme = "README.md"
keywords = ["IFC", "5D", "BIM"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
]
dependencies = [
"ifcopenshell",
]
[project.optional-dependencies]
advanced = [
"typst",
]
2024-06-26 13:02:59 +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 = ["ifc5d*"]
2024-06-26 13:02:59 +10:00
exclude = ["test*"]
[tool.setuptools.package-data]
"*" = ["*.*"]
2026-01-26 12:45:17 +05:00
[tool.ruff]
extend = "../../pyproject.toml"
lint.select = [
"F401", # unused imports
]