From 2fa0ae6ec667f9667a1283387421e82a63b24bcb Mon Sep 17 00:00:00 2001 From: Gaurav Juvekar Date: Sun, 7 Aug 2022 11:34:27 -0700 Subject: [PATCH] Create pyproject --- .gitignore | 2 ++ README.md | 1 - README.rst | 5 +++++ pyproject.toml | 30 ++++++++++++++++++++++++++++++ 4 files changed, 37 insertions(+), 1 deletion(-) delete mode 100644 README.md create mode 100644 README.rst create mode 100644 pyproject.toml diff --git a/.gitignore b/.gitignore index 5a78613..068c463 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,5 @@ client_secret.json authorized_secret.json build __pycache__ +dist +*.egg-info diff --git a/README.md b/README.md deleted file mode 100644 index ce91f07..0000000 --- a/README.md +++ /dev/null @@ -1 +0,0 @@ -Python library to filter email remotely over IMAP/EWS. diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..657c552 --- /dev/null +++ b/README.rst @@ -0,0 +1,5 @@ +====================== +remote-email-filtering +====================== + +Python library to filter email remotely over IMAP/EWS diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..7bc915b --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,30 @@ +[build-system] +requires = ['setuptools'] +build-backend = 'setuptools.build_meta' + +[project] +name = 'remote-email-filtering' +version = '0.1.0' +authors = [ + { name="Gaurav Juvekar", email="gauravjuvekar@gmail.com" }, +] + +description = "Filter email remotely over IMAP/EWS" +readme = 'README.rst' +license = { file='COPYING' } +requires-python = '>=3.10' + +classifiers = [ + "Development Status :: 2 - Pre-Alpha", + "Environment :: No Input/Output (Daemon)", + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Natural Language :: English", + "Programming Language :: Python :: 3", + "Topic :: Communications :: Email :: Email Clients (MUA)", + "Topic :: Communications :: Email :: Filters", +] + +[project.urls] +"Homepage" = "https://github.com/gauravjuvekar/remote-email-filtering" +"Bug Tracker" = "https://github.com/gauravjuvekar/remote-email-filtering/issues"