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.

51 lines
1.0 KiB
TOML
Raw Normal View History

2022-08-31 15:40:47 +10:00
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
2022-08-31 15:40:47 +10:00
[project]
2022-10-03 23:40:29 +11:00
name = "ifcopenshell"
version = "0.0.0"
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"
2025-12-19 18:01:05 +05:00
requires-python = ">=3.10,<3.15"
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+)",
]
dependencies = [
"shapely",
"numpy",
"isodate",
"python-dateutil",
"lark",
"typing-extensions",
]
[project.optional-dependencies]
advanced = [
"networkx",
]
dev = [
"pytest",
"tabulate",
]
2022-08-31 15:40:47 +10:00
[project.urls]
"Homepage" = "http://ifcopenshell.org"
"Bug Tracker" = "https://github.com/ifcopenshell/ifcopenshell/issues"
2022-08-31 15:40:47 +10:00
[tool.setuptools.packages.find]
include = ["ifcopenshell*"]
2022-08-31 15:40:47 +10:00
[tool.setuptools.package-data]
"*" = ["*.*"]
[tool.ruff]
extend = "../../pyproject.toml"
lint.select = [
"F401", # unused imports
]