From d9f1d501aab26fa77c78e0f885c339d563c1778a Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Thu, 16 Feb 2023 15:01:10 +1100 Subject: [PATCH] See #2762. Try again. --- .github/workflows/ci-ifcopenshell-pypi.yml | 2 +- src/ifcopenshell-python/setup.py | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 src/ifcopenshell-python/setup.py diff --git a/.github/workflows/ci-ifcopenshell-pypi.yml b/.github/workflows/ci-ifcopenshell-pypi.yml index 1ec7f280bb..b0196f5654 100644 --- a/.github/workflows/ci-ifcopenshell-pypi.yml +++ b/.github/workflows/ci-ifcopenshell-pypi.yml @@ -8,7 +8,7 @@ on: # │ │ │ ┌───────────── month (1 - 12 or JAN-DEC) # │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT) # * * * * * - - cron: "49 23 15 * *" # 11min before utc midnight + - cron: "10 4 16 * *" # 11min before utc midnight env: major: 0 diff --git a/src/ifcopenshell-python/setup.py b/src/ifcopenshell-python/setup.py new file mode 100644 index 0000000000..d02a347bb0 --- /dev/null +++ b/src/ifcopenshell-python/setup.py @@ -0,0 +1,7 @@ +from setuptools import setup +from pathlib import Path + +cwd = Path(__file__).parent +long_description = (cwd / "README.md").read_text() + +setup(name="ifcopenshell", long_description=long_description, long_description_content_type="text/markdown")