mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-18 14:31:39 +00:00
66f3593de1
Create a standalone Sphinx docs tree for Bonsai Viewer and migrate the Autodesk connector Markdown documentation into RST.\n\nGenerated with the assistance of an AI coding tool.
28 lines
732 B
TOML
28 lines
732 B
TOML
[build-system]
|
|
requires = ["setuptools>=69", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "bonsaiviewer-autodesk"
|
|
version = "0.1.0"
|
|
description = "Autodesk cloud connector for Bonsai Viewer"
|
|
readme = { text = "Autodesk cloud connector for Bonsai Viewer. See src/bonsaiviewer/docs/connectors/autodesk.rst in the IfcOpenShell repository.", content-type = "text/x-rst" }
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"customtkinter>=5.2",
|
|
"httpx>=0.27",
|
|
"keyring>=25.2"
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
build = ["pyinstaller>=6.0"]
|
|
|
|
[tool.setuptools]
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
|
|
[project.scripts]
|
|
bonsaiviewer-autodesk = "bonsaiviewer_autodesk.__main__:main"
|