Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add pyo3-runtime stub package #3450

Merged
merged 1 commit into from
Sep 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 = "[email protected]" },
]
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.