Publish bSDD to PyPI

This commit is contained in:
Dion Moult
2024-04-08 10:06:28 +10:00
parent 08f4dea47f
commit 44b980c1e0
5 changed files with 76 additions and 36 deletions
-4
View File
@@ -1,4 +0,0 @@
# SPDX-FileCopyrightText: 2024-present IfcOpenShell Developers
#
# SPDX-License-Identifier: LGPL-3.0-or-later
__version__ = "0.1.0"
+20 -20
View File
@@ -4,31 +4,32 @@ build-backend = "hatchling.build"
[project]
name = "bsdd"
dynamic = ["version"]
description = ''
version = "0.0.999999"
authors = [
{ name="Dion Moult", email="dion@thinkmoult.com" },
]
description = "Library to interact with the buildingSMART Data Dictionary"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["building smart data dictionaries"]
keywords = ["IFC", "bSDD", "BIM"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
]
dependencies = ["requests"]
[project.urls]
Documentation = "https://github.com/IfcOpenShell/src/bsdd#readme"
Issues = "https://github.com/IfcOpenShell/issues"
Source = "https://github.com/IfcOpenShell/src/bsdd"
[tool.hatch.version]
path = "__about__.py"
Homepage = "http://ifcopenshell.org"
Documentation = "https://docs.ifcopenshell.org"
Issues = "https://github.com/IfcOpenShell/IfcOpenShell/issues"
[tool.hatch.envs.default]
dependencies = [
@@ -39,6 +40,5 @@ dependencies = [
[[tool.hatch.envs.all.matrix]]
python = ["3.8", "3.9", "3.10", "3.11", "3.12"]
[tool.pytest.ini_options]
pythonpath = [".", "src"]
pythonpath = [".", "src"]
+7 -2
View File
@@ -1,6 +1,7 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ifctester"
version = "0.0.999999"
@@ -17,11 +18,15 @@ classifiers = [
dependencies = [
"ifcopenshell",
]
[project.urls]
"Homepage" = "http://ifcopenshell.org"
"Bug Tracker" = "https://github.com/ifcopenshell/ifcopenshell/issues"
Homepage = "http://ifcopenshell.org"
Documentation = "https://docs.ifcopenshell.org"
Issues = "https://github.com/IfcOpenShell/IfcOpenShell/issues"
[tool.setuptools.packages.find]
include = ["ifctester"]
exclude = ["test*"]
[tool.setuptools.package-data]
ifctester = ["*.xsd", "templates/*.html"]