Skip to content

Commit 8f4a26a

Browse files
authored
Merge pull request #3450 from davidhewitt/pyo3-runtime
add pyo3-runtime stub package
2 parents fdf8c7a + 10d9eeb commit 8f4a26a

File tree

6 files changed

+37
-0
lines changed

6 files changed

+37
-0
lines changed

pyo3-runtime/LICENSE-APACHE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../LICENSE-APACHE

pyo3-runtime/LICENSE-MIT

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../LICENSE-MIT

pyo3-runtime/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Coming soon!

pyo3-runtime/pyproject.toml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
[build-system]
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
4+
5+
[project]
6+
name = "pyo3-runtime"
7+
dynamic = ["version"]
8+
description = ''
9+
readme = "README.md"
10+
requires-python = ">=3.7"
11+
license = "MIT OR Apache-2.0"
12+
keywords = []
13+
authors = [
14+
{ name = "David Hewitt", email = "[email protected]" },
15+
]
16+
classifiers = [
17+
"Development Status :: 4 - Beta",
18+
"Programming Language :: Python",
19+
"Programming Language :: Python :: 3.7",
20+
"Programming Language :: Python :: 3.8",
21+
"Programming Language :: Python :: 3.9",
22+
"Programming Language :: Python :: 3.10",
23+
"Programming Language :: Python :: 3.11",
24+
"Programming Language :: Python :: Implementation :: CPython",
25+
"Programming Language :: Python :: Implementation :: PyPy",
26+
]
27+
dependencies = []
28+
29+
[project.urls]
30+
Homepage = "https://github.com/PyO3/pyo3"
31+
32+
[tool.hatch.version]
33+
path = "src/pyo3_runtime/__init__.py"
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = "0.0.1"

pyo3-runtime/tests/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)