Files
IfcOpenShell/src/ifccityjson/pyproject.toml
T

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

35 lines
897 B
TOML
Raw Normal View History

2023-06-11 20:42:09 +02:00
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ifccityjson"
2024-06-26 13:53:55 +10:00
version = "0.0.0"
2023-06-11 20:42:09 +02:00
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"
2024-06-26 13:53:55 +10:00
keywords = ["IFC", "CityJSON", "BIM"]
2023-06-11 20:42:09 +02:00
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
]
dependencies = [
2024-06-26 13:53:55 +10:00
"ifcopenshell",
2023-06-11 20:42:09 +02:00
"cjio>=0.8"
]
2024-06-26 13:53:55 +10:00
2023-06-11 20:42:09 +02:00
[project.urls]
2024-06-26 13:53:55 +10:00
Homepage = "http://ifcopenshell.org"
Documentation = "https://docs.ifcopenshell.org"
Issues = "https://github.com/IfcOpenShell/IfcOpenShell/issues"
[tool.setuptools.packages.find]
2024-07-17 21:29:21 +10:00
include = ["ifccityjson*"]
2024-06-26 13:53:55 +10:00
exclude = ["test*"]
2024-07-17 21:29:21 +10:00
[tool.setuptools.package-data]
"*" = ["*.*"]