38d11a83d46b3e4896e88a7e2325dd3fce691563
bn8 Initial commit

bn8 authored 11 years ago

1) #! /usr/bin/env python
2) # -*- coding: utf-8 -*-
3) 
4) # MailT -- Simple command-line tool to test SMTP/IMAP mail server
5) # By: Benjamin RENARD <brenard@easter-eggs.com>
6) #
7) # Copyright (C) 2011 Easter-eggs
Benjamin Renard Fixed project URL

Benjamin Renard authored 11 years ago

8) # http://git.zionetrix.net/mailt
bn8 Initial commit

bn8 authored 11 years ago

9) #
10) # This file is part of MailT.
11) #
12) # MailT is free software; you can redistribute it and/or modify
13) # it under the terms of the GNU General Public License as published
14) # by the Free Software Foundation, either version 3 of the License,
15) # or (at your option) any later version.
16) #
17) # MailT is distributed in the hope that it will be useful,
18) # but WITHOUT ANY WARRANTY; without even the implied warranty of
19) # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20) # GNU Affero General Public License for more details.
21) #
22) # You should have received a copy of the GNU General Public License
23) # along with this program.  If not, see <http://www.gnu.org/licenses/>.
24) 
25) import os
26) import imp
27) from distutils.core import setup
28) 
29) setup(
30) 	name = "MailT",
31) 	version = "1.1",
32) 	license = "http://www.gnu.org/licenses/gpl.html",
Benjamin Renard Added popt script

Benjamin Renard authored 11 years ago

33) 	description = "MailT is a simple command-line tool to test SMTP/IMAP/POP mail server.",
bn8 Initial commit

bn8 authored 11 years ago

34) 	author = "Benjamin Renard",
35) 	author_email = "brenard@easter-eggs.com",
36) 	url = "http://git.zionetrix.net/mailt",
Benjamin Renard Added popt script

Benjamin Renard authored 11 years ago

37) 	keywords = "command-line smtp imap pop tool test",
38) 	scripts = ["smtpt","imapt","popt"]