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"
|
2023-02-17 12:03:25 +11:00
|
|
|
version = "0.7.0.999999"
|
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"
|
2024-04-05 21:13:24 +11:00
|
|
|
requires-python = ">=3.9,<3.13"
|
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-04-14 08:52:19 +10:00
|
|
|
dependencies = ["mathutils", "shapely", "numpy", "isodate", "dateutil", "lark"]
|
|
|
|
|
|
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]
|
|
|
|
|
where = ["dist"]
|
|
|
|
|
include = ["ifcopenshell*"]
|
2024-04-14 08:52:19 +10:00
|
|
|
|
2022-08-31 15:40:47 +10:00
|
|
|
[tool.setuptools.package-data]
|
|
|
|
|
ifcopenshell = ["*.pyd", "*.so", "*.json"]
|
|
|
|
|
"ifcopenshell.util" = ["*.json", "schema/*.ifc"]
|