-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
27 lines (24 loc) · 932 Bytes
/
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
import sys
from setuptools import setup, find_packages
install_requires = ['aiohttp']
tests_require = install_requires + ['nose', 'mocks']
setup(name='aiosmtp',
version='0.0.1',
description=('smtp server for asyncio'),
long_description='TODO',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/SMTP'],
author='Ben Bader',
author_email='[email protected]',
url='https://github.com/benjamin-bader/aiosmtp',
packages=find_packages(),
install_requires=install_requires,
test_require=tests_require,
test_suite='nose.collector',
include_package_data=True)