mirror of
https://github.com/saymrwulf/cryptography.git
synced 2026-05-14 20:37:55 +00:00
remove ext_package so top_level.txt is accurate in wheel metadata (#7511)
This commit is contained in:
parent
7a4c612b02
commit
59f60154d6
3 changed files with 2 additions and 3 deletions
|
|
@ -43,7 +43,6 @@ zip_safe = False
|
|||
package_dir =
|
||||
=src
|
||||
packages = find:
|
||||
ext_package = cryptography.hazmat.bindings
|
||||
# `install_requires` must be kept in sync with `pyproject.toml`
|
||||
install_requires =
|
||||
cffi >=1.12
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -45,7 +45,7 @@ try:
|
|||
],
|
||||
rust_extensions=[
|
||||
RustExtension(
|
||||
"_rust",
|
||||
"cryptography.hazmat.bindings._rust",
|
||||
"src/rust/Cargo.toml",
|
||||
py_limited_api=True,
|
||||
# Enable abi3 mode if we're not using PyPy.
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ def _extra_compile_args(platform):
|
|||
|
||||
|
||||
ffi = build_ffi_for_binding(
|
||||
module_name="_openssl",
|
||||
module_name="cryptography.hazmat.bindings._openssl",
|
||||
module_prefix="_cffi_src.openssl.",
|
||||
modules=[
|
||||
# This goes first so we can define some cryptography-wide symbols.
|
||||
|
|
|
|||
Loading…
Reference in a new issue