From d41ecfb8617757db46fda2874c51906c09921013 Mon Sep 17 00:00:00 2001 From: Cyber MacGeddon Date: Sat, 28 Sep 2024 20:43:14 +0100 Subject: [PATCH] Tweaking to get package build working --- Makefile | 5 ++++- trustgraph-core/setup.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 624815e3..50467817 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,10 @@ VERSION=0.11.5 DOCKER=podman -all: +all: pkgs + +pkgs: + pip3 wheel --no-deps --wheel-dir dist trustgraph-core/ # container diff --git a/trustgraph-core/setup.py b/trustgraph-core/setup.py index e3bd392d..5e354c42 100644 --- a/trustgraph-core/setup.py +++ b/trustgraph-core/setup.py @@ -1,7 +1,7 @@ import setuptools import os -with open("README.md", "r") as fh: +with open("../README.md", "r") as fh: long_description = fh.read() version = "0.11.5"