forked from cole/aiosmtplib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (32 loc) · 1.15 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
28
29
30
31
32
33
34
35
36
37
import os
from setuptools import setup
def read(f):
return open(os.path.join(os.path.dirname(__file__), f)).read().strip()
setup(
name='aiosmtplib',
packages=['aiosmtplib'],
version='0.1.4',
description='asyncio version of smtplib',
long_description=read('README.rst'),
author='Cole Maclean',
author_email='[email protected]',
url='https://github.com/cole/aiosmtplib',
download_url='https://github.com/cole/aiosmtplib/tarball/0.1.4',
license='MIT',
keywords=['smtp', 'email', 'asyncio'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Communications :: Email',
'Topic :: System :: Networking',
],
)