-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.py
36 lines (34 loc) · 1.14 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
#!/usr/bin/env python
#from distutils.core import setup
from setuptools import setup, find_packages
with open('README.markdown') as f:
long_description = f.read()
setup(
name="secure-smtpd",
version="3.0.0",
description="Adds support for SSL, AUTH, and other goodies, to Petri Lehtinen's SMTPD library.",
long_description=long_description,
author="Benjamin Coe",
author_email="bencoe@gmail.com",
url="https://github.com/bcoe/secure-smtpd",
keywords='secure ssl auth smtp smtpd server',
license='ISC',
packages = find_packages(),
install_requires = [
'argparse'
],
tests_require=[
'nose'
],
include_package_data=True,
zip_safe=False,
classifiers=[ # See: http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 4 - Beta',
'Topic :: Communications :: Email :: Mail Transport Agents',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'License :: OSI Approved :: ISC License (ISCL)',
],
)