Files
IfcOpenShell/src/ifccityjson/pyproject.toml
T
Andrej 3d77fc7c7d ifccityjson - more specific depdendency
API in cjio 0.10 changed (`load` method was moved elsewhere) and for now we just specify that we require older cjio version.
2025-05-30 18:13:10 +05:00

35 lines
905 B
TOML

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ifccityjson"
version = "0.0.0"
authors = [
{ name = "Laurens J.N. Oostwegel", email = "l.oostwegel@gmail.com" },
{ name = "Balázs Dukai", email = "balazs.dukai@3dgi.nl" },
]
description = "Converter for CityJSON files and IFC"
readme = "README.md"
keywords = ["IFC", "CityJSON", "BIM"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
]
dependencies = [
"ifcopenshell",
"cjio >=0.8, <0.10"
]
[project.urls]
Homepage = "http://ifcopenshell.org"
Documentation = "https://docs.ifcopenshell.org"
Issues = "https://github.com/IfcOpenShell/IfcOpenShell/issues"
[tool.setuptools.packages.find]
include = ["ifccityjson*"]
exclude = ["test*"]
[tool.setuptools.package-data]
"*" = ["*.*"]