Index: .hgignore
===================================================================
--- .hgignore	(revision 0)
+++ .hgignore	(revision 3)
@@ -4,2 +4,3 @@
 *.pyc
 *.db
+dist/
Index: LICENSE
===================================================================
--- LICENSE	(revision 3)
+++ LICENSE	(revision 3)
@@ -0,0 +1,27 @@
+Copyright (c) 2012, Soluciones Informaticas Codigo23 S.L.U.
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+    * Redistributions of source code must retain the above copyright notice,
+      this list of conditions and the following disclaimer.
+
+    * Redistributions in binary form must reproduce the above copyright notice,
+      this list of conditions and the following disclaimer in the documentation
+      and/or other materials provided with the distribution.
+
+    * Neither the name of Codigo23 nor the names of its contributors
+      may be used to endorse or promote products derived from this software
+      without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+OF THE POSSIBILITY OF SUCH DAMAGE.
Index: MANIFEST
===================================================================
--- MANIFEST	(revision 3)
+++ MANIFEST	(revision 3)
@@ -0,0 +1,12 @@
+# file GENERATED by distutils, do NOT edit
+README
+setup.py
+postman/__init__.py
+postman/config.py
+postman/daemon.py
+postman/daemon_contrib.py
+postman/models.py
+postman/mta.py
+postman/storage.py
+postman/tools.py
+postman/webapp.py
Index: README
===================================================================
--- README	(revision 3)
+++ README	(revision 3)
@@ -0,0 +1,33 @@
+Postman - Mailing lists manager
+===============================
+
+.. contents::
+
+
+Introduction
+------------
+
+Postman is a mailing list manager. With it you will be able to create mailing
+lists and manage them.
+
+Postman requires a functional MTA [1]_ (Postman has been successfully tested
+with sendmail [2]_ and postfix [3]_ but it should work with other MTA software)
+
+
+Install
+-------
+
+For installation instructions, please check the INSTALL file, or the 
+documentation inside the docs/ subdirectory.
+
+
+Learn more
+----------
+
+If you would like to learn more about Postman (its internals, how it works,
+etc) take a look at the official documentation inside the docs/ subdirectory
+
+
+.. [1] http://en.wikipedia.org/wiki/Message_transfer_agent
+.. [2] http://sendmail.org
+.. [3] http://www.postfix.org
Index: setup.py
===================================================================
--- setup.py	(revision 3)
+++ setup.py	(revision 3)
@@ -0,0 +1,13 @@
+from distutils.core import setup
+
+setup(
+    name='postman',
+    version='0.1.0',
+    author='Francisco de Borja Lopez Rio',
+    author_email='borja@codigo23.net',
+    packages=['postman'],
+    url='https://bitbucket.org/codigo23/postman',
+    license='BSD licence, see LICENCE',
+    description='Mailing lists management software',
+    long_description=open('README').read(),
+)
