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"
|
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-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]
|
|
|
|
|
dev = ["pytest"]
|
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
|
|
|
"*" = ["*.*"]
|