Merge pull request #3450 from davidhewitt/pyo3-runtime

add pyo3-runtime stub package
This commit is contained in:
David Hewitt 2023-09-12 19:53:48 +00:00 committed by GitHub
commit 8f4a26a66e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 37 additions and 0 deletions

1
pyo3-runtime/LICENSE-APACHE Symbolic link
View File

@ -0,0 +1 @@
../LICENSE-APACHE

1
pyo3-runtime/LICENSE-MIT Symbolic link
View File

@ -0,0 +1 @@
../LICENSE-MIT

1
pyo3-runtime/README.md Normal file
View File

@ -0,0 +1 @@
Coming soon!

View File

@ -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"

View File

@ -0,0 +1 @@
__version__ = "0.0.1"

View File