Files
IfcOpenShell/src/ifcopenshell-python/pyproject.toml
T

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

29 lines
904 B
TOML
Raw Normal View History

2022-08-31 15:40:47 +10:00
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[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"
requires-python = ">=3.6,<3.12"
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+)",
]
2023-07-04 17:33:19 -06:00
[project.optional-dependencies]
geometry = ["mathutils"]
date = ["isodate"]
2022-08-31 15:40:47 +10:00
[project.urls]
"Homepage" = "http://ifcopenshell.org"
"Bug Tracker" = "https://github.com/ifcopenshell/ifcopenshell/issues"
[tool.setuptools.packages.find]
where = ["dist"]
include = ["ifcopenshell*"]
[tool.setuptools.package-data]
ifcopenshell = ["*.pyd", "*.so", "*.json"]
"ifcopenshell.util" = ["*.json", "schema/*.ifc"]