Skip to content

Commit

Permalink
🔧 update MANIFEST.in
Browse files Browse the repository at this point in the history
  • Loading branch information
Ousret committed Sep 20, 2023
1 parent c15f86b commit 356a971
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include README.md CHANGELOG.md Cargo.lock Cargo.toml setup.cfg wassima/py.typed pyproject.toml
recursive-include tests *
recursive-include src *
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fn root_der_certificates(py: Python) -> PyResult<Vec<&PyBytes>> {
}

#[pymodule]
fn rustls(_py: Python, m: &PyModule) -> PyResult<()> {
fn wassima(_py: Python, m: &PyModule) -> PyResult<()> {
m.add_function(wrap_pyfunction!(root_der_certificates, m)?)?;
Ok(())
}
2 changes: 1 addition & 1 deletion wassima/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from functools import lru_cache
from ssl import DER_cert_to_PEM_cert

from .rustls import root_der_certificates
from .wassima import root_der_certificates


@lru_cache()
Expand Down
Empty file added wassima/py.typed
Empty file.
File renamed without changes.

0 comments on commit 356a971

Please sign in to comment.