-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7dc6b43
commit 2fa0ae6
Showing
4 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,5 @@ client_secret.json | |
authorized_secret.json | ||
build | ||
__pycache__ | ||
dist | ||
*.egg-info |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
====================== | ||
remote-email-filtering | ||
====================== | ||
|
||
Python library to filter email remotely over IMAP/EWS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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="[email protected]" }, | ||
] | ||
|
||
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" |