[Nym3-commit] r134 - in trunk: . nym3/Client
nym3-devel@lists.noreply.org
nym3-devel@lists.noreply.org
Wed, 25 Aug 2004 23:36:55 +0200
Author: laurent
Date: 2004-08-25 23:36:53 +0200 (Wed, 25 Aug 2004)
New Revision: 134
Added:
trunk/setup.py
Modified:
trunk/nym3/Client/Main.py
Log:
Use distutils for proper distribution.
Modified: trunk/nym3/Client/Main.py
===================================================================
--- trunk/nym3/Client/Main.py 2004-08-25 00:31:28 UTC (rev 133)
+++ trunk/nym3/Client/Main.py 2004-08-25 21:36:53 UTC (rev 134)
@@ -9,8 +9,7 @@
import mixminion.Crypto as _cr
def processMessage(msg):
- """process incoming control message
- """
+ """process incoming control message"""
sr = Message.StrReader(msg)
comList = sr.readCommandCToSList()
Added: trunk/setup.py
===================================================================
--- trunk/setup.py 2004-08-25 00:31:28 UTC (rev 133)
+++ trunk/setup.py 2004-08-25 21:36:53 UTC (rev 134)
@@ -0,0 +1,11 @@
+#!/usr/bin/env python
+
+from distutils.core import setup
+
+setup(name = "nym3",
+ version = "0.0.20040825",
+ description = "Type III nym server and client",
+ author = "Laurent Fousse & Jean-René Reinhard",
+ author_email = "jr@komite.net",
+ url = "https://nowwhat.fousse.info/svn/nym3/trunk/nym3",
+ packages = ['nym3.Client', 'nym3.Server'])