From: Jakub Czajka Date: Sat, 4 Nov 2023 21:00:36 +0000 (+0100) Subject: Turn the repository into a python project. X-Git-Url: https://git.ekhem.eu.org/?a=commitdiff_plain;h=a30cc8c4f03180e3c08e78b5bc1b24ae5514f571;p=gdrive_knife.git Turn the repository into a python project. --- diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..bda4096 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,13 @@ +[project] +name = "gdrive_knife" +version = "1.0.0" +authors = [ + { name="Jakub Czajka", email="jakub@ekhem.eu.org" }, +] +requires-python = ">=3.10.7" +dependencies = [ + "cryptography==40.0.2", + "google-api-python-client==2.84.0", + "google-auth-httplib2==0.1.0", + "google-auth-oauthlib==1.0.0", +] diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index adc302e..0000000 --- a/requirements.txt +++ /dev/null @@ -1,4 +0,0 @@ -cryptography==40.0.2 -google-api-python-client==2.84.0 -google-auth-httplib2==0.1.0 -google-auth-oauthlib==1.0.0