Distribute IfcFM on PyPI

This commit is contained in:
Dion Moult
2024-06-26 11:57:43 +10:00
parent 4976074b18
commit 16e98e1400
5 changed files with 114 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ifcfm"
version = "0.0.0"
authors = [
{ name="Dion Moult", email="dion@thinkmoult.com" },
]
description = "Extract data from IFC following facility management standards"
readme = "README.md"
keywords = ["IFC", "FM", "BIM"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
]
dependencies = [
"ifcopenshell",
"openpyxl",
"odfpy",
"pandas",
]
[project.urls]
Homepage = "http://ifcopenshell.org"
Documentation = "https://docs.ifcopenshell.org"
Issues = "https://github.com/IfcOpenShell/IfcOpenShell/issues"
[tool.setuptools.packages.find]
include = ["ifcfm"]
exclude = ["test*"]