Files
IfcOpenShell/src/ifctester/pyproject.toml
T

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

51 lines
1.0 KiB
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"
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+)",
]
dependencies = [
"ifcopenshell",
"python-dateutil",
"xmlschema",
"numpy",
"odfpy",
"pystache",
"bcf-client",
"flask",
"typing_extensions",
]
2024-04-08 10:06:28 +10:00
[project.optional-dependencies]
advanced = [
]
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*"]
2023-05-09 20:49:08 +10:00
exclude = ["test*"]
2024-04-08 10:06:28 +10:00
[tool.setuptools.package-data]
"*" = ["*.*"]
2026-01-26 12:45:17 +05:00
[tool.ruff]
extend = "../../pyproject.toml"
lint.select = [
"F401", # unused imports
]