-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 1.07 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup
setup(
name='strudelpy',
version='0.4.1',
description='Easy as Pie Emails in Python',
long_description='StrudelPy is an easy to use library to manage sending emails in a OO way.'
'The library is comprised of a SMTP object to manage connections to SMTP'
'servers and an Email object to handle the messages themselves.'
'Supports Python 2 and 3.',
author='Harel Malka',
author_email='[email protected]',
url='https://github.com/harel/strudelpy',
download_url='https://github.com/harel/strudelpy/archive/0.3.tar.gz',
keywords=['email', 'smtp'], # arbitrary keywords
install_requires=['six'],
license='MIT',
packages=['strudelpy', 'strudelpy.tests'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Topic :: Communications :: Email',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
]
)