From 10d9eeb7e84a580e0b7166c7c4e7297a56d69f26 Mon Sep 17 00:00:00 2001 From: David Hewitt <1939362+davidhewitt@users.noreply.github.com> Date: Tue, 12 Sep 2023 21:18:32 +0200 Subject: [PATCH] add pyo3-runtime stub package --- pyo3-runtime/LICENSE-APACHE | 1 + pyo3-runtime/LICENSE-MIT | 1 + pyo3-runtime/README.md | 1 + pyo3-runtime/pyproject.toml | 33 +++++++++++++++++++++++ pyo3-runtime/src/pyo3_runtime/__init__.py | 1 + pyo3-runtime/tests/__init__.py | 0 6 files changed, 37 insertions(+) create mode 120000 pyo3-runtime/LICENSE-APACHE create mode 120000 pyo3-runtime/LICENSE-MIT create mode 100644 pyo3-runtime/README.md create mode 100644 pyo3-runtime/pyproject.toml create mode 100644 pyo3-runtime/src/pyo3_runtime/__init__.py create mode 100644 pyo3-runtime/tests/__init__.py diff --git a/pyo3-runtime/LICENSE-APACHE b/pyo3-runtime/LICENSE-APACHE new file mode 120000 index 00000000..965b606f --- /dev/null +++ b/pyo3-runtime/LICENSE-APACHE @@ -0,0 +1 @@ +../LICENSE-APACHE \ No newline at end of file diff --git a/pyo3-runtime/LICENSE-MIT b/pyo3-runtime/LICENSE-MIT new file mode 120000 index 00000000..76219eb7 --- /dev/null +++ b/pyo3-runtime/LICENSE-MIT @@ -0,0 +1 @@ +../LICENSE-MIT \ No newline at end of file diff --git a/pyo3-runtime/README.md b/pyo3-runtime/README.md new file mode 100644 index 00000000..6863c098 --- /dev/null +++ b/pyo3-runtime/README.md @@ -0,0 +1 @@ +Coming soon! diff --git a/pyo3-runtime/pyproject.toml b/pyo3-runtime/pyproject.toml new file mode 100644 index 00000000..3aa7dbd1 --- /dev/null +++ b/pyo3-runtime/pyproject.toml @@ -0,0 +1,33 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[project] +name = "pyo3-runtime" +dynamic = ["version"] +description = '' +readme = "README.md" +requires-python = ">=3.7" +license = "MIT OR Apache-2.0" +keywords = [] +authors = [ + { name = "David Hewitt", email = "1939362+davidhewitt@users.noreply.github.com" }, +] +classifiers = [ + "Development Status :: 4 - Beta", + "Programming Language :: Python", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: Implementation :: CPython", + "Programming Language :: Python :: Implementation :: PyPy", +] +dependencies = [] + +[project.urls] +Homepage = "https://github.com/PyO3/pyo3" + +[tool.hatch.version] +path = "src/pyo3_runtime/__init__.py" diff --git a/pyo3-runtime/src/pyo3_runtime/__init__.py b/pyo3-runtime/src/pyo3_runtime/__init__.py new file mode 100644 index 00000000..f102a9ca --- /dev/null +++ b/pyo3-runtime/src/pyo3_runtime/__init__.py @@ -0,0 +1 @@ +__version__ = "0.0.1" diff --git a/pyo3-runtime/tests/__init__.py b/pyo3-runtime/tests/__init__.py new file mode 100644 index 00000000..e69de29b