Files
IfcOpenShell/src/bsdd/pyproject.toml
T

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

52 lines
1.3 KiB
TOML
Raw Normal View History

2024-02-29 16:16:04 +00:00
[build-system]
2024-06-12 18:44:51 +10:00
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
2024-02-29 16:16:04 +00:00
[project]
name = "bsdd"
2024-06-12 18:44:51 +10:00
version = "0.0.0"
2024-04-08 10:06:28 +10:00
authors = [
{ name="Dion Moult", email="dion@thinkmoult.com" },
]
description = "Library to interact with the buildingSMART Data Dictionary"
2024-02-29 16:16:04 +00:00
readme = "README.md"
2025-12-19 18:01:05 +05:00
requires-python = ">=3.10"
2024-04-08 10:06:28 +10:00
keywords = ["IFC", "bSDD", "BIM"]
2024-02-29 16:16:04 +00:00
classifiers = [
2024-04-08 10:06:28 +10:00
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
2025-12-19 18:01:05 +05:00
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
2024-04-08 10:06:28 +10:00
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
2024-02-29 16:16:04 +00:00
]
dependencies = [
"requests",
"typing-extensions",
"pydantic",
]
2024-02-29 16:16:04 +00:00
2024-06-12 18:44:51 +10:00
[project.optional-dependencies]
dev = [
"coverage[toml]>=6.5",
"pytest",
]
2024-02-29 16:16:04 +00:00
[project.urls]
2024-04-08 10:06:28 +10:00
Homepage = "http://ifcopenshell.org"
Documentation = "https://docs.ifcopenshell.org"
Issues = "https://github.com/IfcOpenShell/IfcOpenShell/issues"
2024-02-29 16:16:04 +00:00
2024-06-12 18:44:51 +10:00
[tool.setuptools]
2025-09-19 15:36:11 +02:00
py-modules = ["bsdd","bsdd_json","type_hints"]
2026-01-26 12:45:17 +05:00
[tool.ruff]
extend = "../../pyproject.toml"
lint.select = [
"F401", # unused imports
]