list_imap_messages/setup.py

15 lines
407 B
Python
Raw Permalink Normal View History

2023-04-07 21:39:52 +02:00
import setuptools
setuptools.setup(
scripts=['list_imap_messages/list_imap_messages.py'],
author="Antonio J. Delgado",
version='0.0.1',
name='list_imap_messages',
author_email="",
url="",
description="List IMAP messages",
long_description="README.md",
long_description_content_type="text/markdown",
license="GPLv3",
#keywords=["my", "script", "does", "things"]
)