add build to Makefile and use it in bcf-pypi Workflow

This commit is contained in:
Christoph Mellueh
2023-08-28 10:43:19 +02:00
committed by Thomas Krijnen
parent 61a7325bc0
commit b8168ca606
3 changed files with 19 additions and 6 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ jobs:
run: | run: |
pip install build pip install build
cd src/bcf && cd src/bcf &&
python -m build make dist
- name: Publish a Python distribution to PyPI - name: Publish a Python distribution to PyPI
uses: ortega2247/pypi-upload-action@master uses: ortega2247/pypi-upload-action@master
with: with:
+13
View File
@@ -1,3 +1,9 @@
VERSION:=`date '+%y%m%d'`
SED:=sed -i
ifeq ($(UNAME_S),Darwin)
SED:=sed -i '' -e
endif
.PHONY: ci .PHONY: ci
ci: ci:
tox tox
@@ -12,6 +18,13 @@ models:
cd src && xsdata generate -p bcf.v2.model --unnest-classes --kw-only --slots -ds Google bcf/v2/xsd cd src && xsdata generate -p bcf.v2.model --unnest-classes --kw-only --slots -ds Google bcf/v2/xsd
cd src && xsdata generate -p bcf.v3.model --unnest-classes --kw-only --slots -ds Google bcf/v3/xsd cd src && xsdata generate -p bcf.v3.model --unnest-classes --kw-only --slots -ds Google bcf/v3/xsd
.PHONY: dist
dist:
rm -rf dist
$(SED) "s/999999/$(VERSION)/" pyproject.toml
python -m build
$(SED) "s/$(VERSION)/999999/" pyproject.toml
# .PHONY # .PHONY
# api: # api:
# openapi-python-client generate --url https://api.swaggerhub.com/apis/buildingSMART/BCF/3.0 # openapi-python-client generate --url https://api.swaggerhub.com/apis/buildingSMART/BCF/3.0
+1 -1
View File
@@ -17,7 +17,7 @@ dependencies = [
"numpy", "numpy",
"ifcopenshell", "ifcopenshell",
] ]
version = "0.0.1" version = "0.0.999999"
classifiers = [ classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent", "Operating System :: OS Independent",