From c6e50be6609bc85724f4167dc77d087356a6e53b Mon Sep 17 00:00:00 2001 From: Kushal Das Date: Tue, 30 Aug 2022 13:54:22 +0200 Subject: [PATCH 1/2] Adds MANIFEST required for setuptools --- MANIFEST.in | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..77d54a5 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,10 @@ +include Cargo.toml +recursive-include src * +recursive-include tests * +recursive-include docs * +include mypy.ini +include changelog.md +include README.md +include requirements-dev.txt +global-exclude *.py[cod] +prune docs/_build/* \ No newline at end of file From b2a3d18986a0720f4c53add8f72154d287b438b4 Mon Sep 17 00:00:00 2001 From: Kushal Das Date: Tue, 30 Aug 2022 14:00:50 +0200 Subject: [PATCH 2/2] Adds back httpx as dependency --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 1086786..3418975 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,6 +20,10 @@ classifiers = [ authors = [{name="Kushal Das", email="mail@kushaldas.in"}] readme = "README.md" requires-python = ">=3.8" +dependencies = [ + "httpx", +] + [project.urls] "Homepage" = "https://github.com/kushaldas/johnnycanencrypt" "Bug Tracker" = "https://github.com/kushaldas/johnnycanencrypt/issues"