2022-08-31 15:40:47 +10:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools>=61.0"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
2024-04-14 08:52:19 +10:00
|
|
|
|
2022-08-31 15:40:47 +10:00
|
|
|
[project]
|
2022-10-03 23:40:29 +11:00
|
|
|
name = "ifcopenshell"
|
2024-06-11 13:11:14 +10:00
|
|
|
version = "0.0.0"
|
2022-08-31 15:40:47 +10:00
|
|
|
authors = [
|
|
|
|
|
{ name="Dion Moult", email="dion@thinkmoult.com" },
|
|
|
|
|
]
|
|
|
|
|
description = "Python bindings, utility functions, and high-level API for IfcOpenShell"
|
2023-02-12 20:32:30 +11:00
|
|
|
readme = "README.md"
|
2025-12-19 18:01:05 +05:00
|
|
|
requires-python = ">=3.10,<3.15"
|
2022-08-31 15:40:47 +10:00
|
|
|
classifiers = [
|
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
|
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
|
|
|
|
|
]
|
2024-07-10 21:37:31 +05:00
|
|
|
dependencies = [
|
|
|
|
|
"shapely",
|
|
|
|
|
"numpy",
|
|
|
|
|
"isodate",
|
|
|
|
|
"python-dateutil",
|
|
|
|
|
"lark",
|
|
|
|
|
"typing-extensions",
|
|
|
|
|
]
|
2024-06-15 15:10:36 +10:00
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
2025-05-30 13:25:03 +05:00
|
|
|
advanced = [
|
|
|
|
|
"networkx",
|
|
|
|
|
]
|
2025-05-30 13:24:36 +05:00
|
|
|
dev = [
|
|
|
|
|
"pytest",
|
|
|
|
|
"tabulate",
|
|
|
|
|
]
|
2024-04-14 08:52:19 +10:00
|
|
|
|
2022-08-31 15:40:47 +10:00
|
|
|
[project.urls]
|
|
|
|
|
"Homepage" = "http://ifcopenshell.org"
|
|
|
|
|
"Bug Tracker" = "https://github.com/ifcopenshell/ifcopenshell/issues"
|
2024-04-14 08:52:19 +10:00
|
|
|
|
2022-08-31 15:40:47 +10:00
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
|
include = ["ifcopenshell*"]
|
2024-04-14 08:52:19 +10:00
|
|
|
|
2022-08-31 15:40:47 +10:00
|
|
|
[tool.setuptools.package-data]
|
2024-07-17 23:08:33 +10:00
|
|
|
"*" = ["*.*"]
|
2025-05-28 17:31:10 +05:00
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
|
extend = "../../pyproject.toml"
|
2026-01-16 16:55:56 +05:00
|
|
|
lint.select = [
|
|
|
|
|
"F401", # unused imports
|
|
|
|
|
]
|