Skip to content

Commit

Permalink
Merge pull request #3450 from davidhewitt/pyo3-runtime
Browse files Browse the repository at this point in the history
add pyo3-runtime stub package
  • Loading branch information
davidhewitt authored Sep 12, 2023
2 parents fdf8c7a + 10d9eeb commit 8f4a26a
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 0 deletions.
1 change: 1 addition & 0 deletions pyo3-runtime/LICENSE-APACHE
1 change: 1 addition & 0 deletions pyo3-runtime/LICENSE-MIT
1 change: 1 addition & 0 deletions pyo3-runtime/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Coming soon!
33 changes: 33 additions & 0 deletions pyo3-runtime/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
1 change: 1 addition & 0 deletions pyo3-runtime/src/pyo3_runtime/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.0.1"
Empty file added pyo3-runtime/tests/__init__.py
Empty file.

0 comments on commit 8f4a26a

Please sign in to comment.