-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (15 loc) · 672 Bytes
/
setup.py
File metadata and controls
17 lines (15 loc) · 672 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup
setup(name='buffering-smtp-handler',
version='0.2.1',
py_modules=['buffering_smtp_handler'],
url='https://github.com/mike-charles/python-buffering-smtp-handler',
author='Mike Charles',
author_email='mike.e.charles@gmail.com',
description='Enables sending multiple logging events in a single email',
classifiers=["Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
],
)