Skip to content

Commit

Permalink
Create pyproject
Browse files Browse the repository at this point in the history
  • Loading branch information
gauravjuvekar committed Aug 7, 2022
1 parent 7dc6b43 commit 2fa0ae6
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ client_secret.json
authorized_secret.json
build
__pycache__
dist
*.egg-info
1 change: 0 additions & 1 deletion README.md

This file was deleted.

5 changes: 5 additions & 0 deletions README.rst
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
30 changes: 30 additions & 0 deletions pyproject.toml
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"

0 comments on commit 2fa0ae6

Please sign in to comment.